<!DOCTYPE html>
<html lang="en-US" data-df  data-container="1185" data-xl="2" data-admin-bar="0" prefix="og: https://ogp.me/ns#" class="elementor-kit-154">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="//gmpg.org/xfn/11">
<link rel="pingback" href="https://www.haircycle.com/xmlrpc.php">

    <style>
        .pro-wccp:before {
            content: "\f160";
            top: 3px;
        }
        .pro-wccp:before{
            color:#02CA03 !important
        }
        .pro-wccp {
            transform: rotate(45deg);
        }
    </style>
    <script id="wccp_pro_disable_hot_keys">
/*****************For contenteditable tags***************/
var wccp_pro_iscontenteditable_flag = false;

function wccp_pro_iscontenteditable(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;
	
	var iscontenteditable = "false";
		
	if(typeof target.getAttribute!="undefined" )
	{
		iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string
		
		if(typeof target.hasAttribute!="undefined")
		{
			if(target.hasAttribute("contenteditable"))
				iscontenteditable = true;
		}
	}
	
	wccp_pro_log_to_console_if_allowed("iscontenteditable:" + iscontenteditable);
	
	var iscontenteditable2 = false;
	
	if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean

	if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;
	
	if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
	{
		if(typeof target.style!="undefined" ) target.style.cursor = "text";
		
		wccp_pro_iscontenteditable_flag = true;
		
		wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: true");
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: false");
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
	if(window.wccp_pro_iscontenteditable_flag == true) return;
	
	wccp_pro_log_to_console_if_allowed("wccp_pro_clear_any_selection");
	
	var myName = wccp_pro_clear_any_selection.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));

	wccp_pro_log_to_console_if_allowed("called_by: " + myName);
	
	if (window.getSelection)
	{
		if (window.getSelection().empty)
		{  // Chrome
			window.getSelection().empty();
		} else if (window.getSelection().removeAllRanges) 
		{  // Firefox
			window.getSelection().removeAllRanges();
		}
	} else if (document.selection)
	{  // IE?
		document.selection.empty();
	}
	
	//show_wccp_pro_message("You are not allowed to make this operation");
}


/*Is content_editable element*/
function is_content_editable_element(element_name = "")
{
	if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK_WCCP")
	{
		wccp_pro_log_to_console_if_allowed("is_content_editable_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_content_editable_element: false >>" + element_name);
	
	return false;
}
/*Is selection enabled element*/
/*
function is_selection_enabled_element(element_name = "")
{
	if (is_content_editable_element == true)
	{
		wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: false >>" + element_name);
	
	return false;
}
*/
/*Hot keys function  */
function disable_hot_keys(e)
{
	wccp_pro_log_to_console_if_allowed("disable_hot_keys");
	
	e = e || window.event;
	
	//console.log(e);
	
	if (!e) return;
	
	var key;

		if(window.event)
			  key = window.event.keyCode;     /*IE*/
		else if (e.hasOwnProperty("which")) key = e.which;     /*firefox (97)*/

	wccp_pro_log_to_console_if_allowed("Data:", key);
	
			
		if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			
			return false;
		}
		
	var elemtype = e.target.tagName;
	
	elemtype = elemtype.toUpperCase();
	
	var sel = getSelectionTextAndContainerElement();
	
	if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */

	/*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
	if (is_content_editable_element(elemtype) == true)
	{
		elemtype = 'TEXT';
	}
	
	if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';
	
		if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
		{
			copyTextToClipboard("");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}	
	if (e.ctrlKey || e.metaKey)
	{
		if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
		{
			 show_wccp_pro_message('Alert: You are not allowed to copy content or view source');
			 return false;
		}
		if (elemtype!= 'TEXT')
		{
						
			if (key == 65)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 67)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 88)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 86)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}		}
				
		if (key == 85)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				
				if (key == 44)
		{
			copyTextToClipboard("no");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
		
					if (key == 73)//F12 chrome developer key disable
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}
				
				
		if (key == 83)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}    }
return true;
}


window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function() {
	  jQuery(document).bind("keyup keydown", disable_hot_keys);
	});
});

</script>
	<script id="wccp_pro_class_exclusion">
function copyToClipboard(elem) {
	  // create hidden text element, if it doesn't already exist
    var targetId = "_wccp_pro_hiddenCopyText_";
    {
        // must use a temporary form element for the selection and copy
        target = document.getElementById(targetId);
        if (!target) {
            var target = document.createElement("textarea");
            target.style.position = "absolute";
            target.style.left = "-9999px";
            target.style.top = "0";
            target.id = targetId;
            document.body.appendChild(target);
        }
        target.textContent = elem.textContent;
    }
    // select the content
    var currentFocus = document.activeElement;
    target.focus();
    target.setSelectionRange(0, target.value.length);
    
    // copy the selection
    var succeed;
    try {
    	  succeed = document.execCommand("copy");
    } catch(e) {
        succeed = false;
    }

    // restore original focus
    if (currentFocus && typeof currentFocus.focus === "function") {
        currentFocus.focus();
    }
    
    
	// clear temporary content
	target.textContent = "";
	document.getElementsByTagName('span')[0].innerHTML = " ";
    return succeed;
}
/**************************************************/
function wccp_pro_log_to_console_if_allowed(data = "")
{//return;
	var myName = "";
	
	if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));
	
	}
/**************************************************/
function fallbackCopyTextToClipboard(text) {
  var textArea = document.createElement("textarea");
  textArea.value = text;
  document.body.appendChild(textArea);
  textArea.focus();
  textArea.select();

  try {
    var successful = document.execCommand("copy");
    var msg = successful ? "successful" : "unsuccessful";
    wccp_pro_log_to_console_if_allowed("Fallback: Copying text command was " + msg);
  } catch (err) {
    console.error("Fallback: Oops, unable to copy", err);
  }

  document.body.removeChild(textArea);
}
/*****************************************/
function copyTextToClipboard(text) {
  if (!navigator.clipboard) {
    fallbackCopyTextToClipboard(text);
    return;
  }
  navigator.clipboard.writeText(text).then(
    function() {
      console.log("Async: Copying to clipboard was successful!");
    },
    function(err) {
      console.error("Async: Could not copy text: ", err);
    }
  );
}
/*****************************************/
/*getSelectionTextAndContainerElement*/
function getSelectionTextAndContainerElement()
{
    var text = "", containerElement = null;
    if (typeof window.getSelection != "undefined") {
        var sel = window.getSelection();
        if (sel.rangeCount) {
            var node = sel.getRangeAt(0).commonAncestorContainer;
            containerElement = node.nodeType == 1 ? node : node.parentNode;
			if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
            text = sel.toString();
        }
    } else if (typeof document.selection != "undefined" && document.selection.type != "Control")
	{
        var textRange = document.selection.createRange();
        containerElement = textRange.parentElement();
        text = textRange.text;
    }
    
	return {
        text: text,
        containerElement: containerElement
    };
}

function getSelectionParentElement() {
    var parentEl = null, sel;
	
    if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            parentEl = sel.getRangeAt(0).commonAncestorContainer;
			//sel.getRangeAt(0).startContainer.parentNode;
            if (parentEl.nodeType != 1) {
                parentEl = parentEl.parentNode;
            }
        }
    } else if ( (sel = document.selection) && sel.type != "Control") {
        parentEl = sel.createRange().parentElement();
    }
	
	let arr = new Array();
	
	arr["nodeName"] = "cant_find_parent_element";
	
	if(parentEl != null)
		return parentEl;
	else
		return arr;
}
/*****************************************/
function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}
/*****************************************/
</script>

<script id="apply_class_exclusion">
function apply_class_exclusion(e)
{
	wccp_pro_log_to_console_if_allowed(e);
	
	var my_return = 'No';
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement || e || 'nothing';
	
	var excluded_classes = '' + '';
	
	var class_to_exclude = "";
	
	if(target.parentElement != null)
	{
		class_to_exclude = target.className + ' ' + target.parentElement.className || '';
	}else{
		class_to_exclude = target.className;
	}
	
	var class_to_exclude_array = Array();
	
	//console.log(class_to_exclude);
	
	if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");
	
	//console.log (class_to_exclude_array);
	
	class_to_exclude_array.forEach(function(item)
	{
		if(item != '' && excluded_classes.indexOf(item)>=0)
		{
			//target.style.cursor = "text";
			
			//console.log ('Yes');
			
			my_return = 'Yes';
		}
	});

	try {
		class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
		}
	catch(err) 
		{
		class_to_exclude = '';
		}
	
	if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
	{
		//target.style.cursor = "text";
		my_return = 'Yes';
	}

	return my_return;
}
</script>
<style id="wccp_pro_style2" data-asas-style="">

	
	*[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/
	  -webkit-user-select: auto !important;
	  cursor: text !important;
	  user-select: text !important;
	  pointer-events: auto !important;
	}
	
	/*
	*[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;}
	*[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;}
	input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	*/
	a{ cursor: pointer ; pointer-events: auto !important;}

	</style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style>	<script id="wccp_pro_alert_message">
	window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign
	
	window.addEventListener('load', function (){
		// Create the first div element with the "oncontextmenu" attribute
		const wccp_pro_mask = document.createElement('div');
		wccp_pro_mask.setAttribute('oncontextmenu', 'return false;');
		wccp_pro_mask.setAttribute('id', 'wccp_pro_mask');

		// Create the second div element with the "msgmsg-box-wpcp hideme" classes
		const wpcp_error_message = document.createElement('div');
		wpcp_error_message.setAttribute('id', 'wpcp-error-message');
		wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme');

		// Add a span element with the "error: " text inside the second div
		const error_span = document.createElement('span');
		error_span.innerText = 'error: ';
		wpcp_error_message.appendChild(error_span);

		// Add the error message text inside the second div
		const error_text = document.createTextNode('Alert: Content selection is disabled!!');
		wpcp_error_message.appendChild(error_text);

		// Add the div elements to the document body
		document.body.appendChild(wccp_pro_mask);
		document.body.appendChild(wpcp_error_message);
	});

	var timeout_result;
	function show_wccp_pro_message(smessage="", style="")
	{
		wccp_pro_log_to_console_if_allowed(smessage);
				
		timeout = 3000;
		
		if(style == "") style = "warning-wpcp";
		
		if (smessage !== "" && timeout!=0)
		{
			var smessage_text = smessage;
			jquery_fadeTo();
			document.getElementById("wpcp-error-message").innerHTML = smessage_text;
			document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
		else
		{
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
	}
	function hide_message()
	{
		jquery_fadeOut();
		document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
	}
	function jquery_fadeTo()
	{
		try {
			jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
		}
		catch(err) {
			//alert(err.message);
			}
	}
	function jquery_fadeOut()
	{
		try {
			jQuery("#wccp_pro_mask").fadeOut( "slow" );
		}
		catch(err) {}
	}
	</script>
	<style>
	#wccp_pro_mask
	{
		position: absolute;
		bottom: 0;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		background-color: #000;
		pointer-events: none;
		display: none;
		z-index: 10000;
		animation: 0.5s ease 0s normal none 1 running ngdialog-fadein;
		background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
	}
	#wpcp-error-message {
	    direction: ltr;
	    text-align: center;
	    transition: opacity 900ms ease 0s;
		pointer-events: none;
	    z-index: 99999999;
	}
	.hideme {
    	opacity:0;
    	visibility: hidden;
	}
	.showme {
    	opacity:1;
    	visibility: visible;
	}
	.msgmsg-box-wpcp {
		border-radius: 10px;
		color: #555555;
		font-family: Tahoma;
		font-size: 12px;
		margin: 10px !important;
		padding: 10px 36px !important;
		position: fixed;
		width: 255px;
		top: 50%;
		left: 50%;
		margin-top: -10px !important;
		margin-left: -130px !important;
	}
	.msgmsg-box-wpcp b {
		font-weight:bold;
	}
		.warning-wpcp {
		background:#fafafa url('https://www.haircycle.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%;
		border:1px solid #a3a3a3;
		-webkit-box-shadow: 0px 0px 34px 2px #a3a3a3;
		-moz-box-shadow: 0px 0px 34px 2px #a3a3a3;
		box-shadow: 0px 0px 34px 2px #a3a3a3;
	}
	.success-wpcp {
		background: #fafafa url('https://www.haircycle.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%;
		border: 1px solid #00b38f;
		box-shadow: 0px 0px 34px 2px #adc;
	}
    </style>

<!-- Search Engine Optimization by Rank Math PRO - https://rankmath.com/ -->
<title>HairCycle | Hair Loss Products &amp; Hair Transplant Treatments</title>
<meta name="description" content="Discover HairCycle&#039;s range of hair loss products and treatments designed to support hair transplants, promote growth, and prevent hair loss."/>
<meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/>
<link rel="canonical" href="https://www.haircycle.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="HairCycle | Hair Loss Products &amp; Hair Transplant Treatments" />
<meta property="og:description" content="Discover HairCycle&#039;s range of hair loss products and treatments designed to support hair transplants, promote growth, and prevent hair loss." />
<meta property="og:url" content="https://www.haircycle.com/" />
<meta property="og:site_name" content="Hair Cycle Store" />
<meta property="og:updated_time" content="2026-01-20T06:54:55+00:00" />
<meta property="article:published_time" content="2024-10-23T10:07:57+00:00" />
<meta property="article:modified_time" content="2026-01-20T06:54:55+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="HairCycle | Hair Loss Products &amp; Hair Transplant Treatments" />
<meta name="twitter:description" content="Discover HairCycle&#039;s range of hair loss products and treatments designed to support hair transplants, promote growth, and prevent hair loss." />
<meta name="twitter:site" content="@HairCycle" />
<meta name="twitter:creator" content="@HairCycle" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="peggi" />
<meta name="twitter:label2" content="Time to read" />
<meta name="twitter:data2" content="14 minutes" />
<script type="application/ld+json" class="rank-math-schema-pro">{"@context":"https://schema.org","@graph":[{"@type":"Place","@id":"https://www.haircycle.com/#place","address":{"@type":"PostalAddress","streetAddress":"1070 Power Place","addressLocality":"Alpharetta","addressRegion":"Georgia","postalCode":"30009","addressCountry":"US"}},{"@type":"Organization","@id":"https://www.haircycle.com/#organization","name":"HairCycle","url":"https://www.haircycle.com","sameAs":["https://www.facebook.com/HairCycleProducts","https://twitter.com/HairCycle","https://www.instagram.com/hair_cycle/"],"address":{"@type":"PostalAddress","streetAddress":"1070 Power Place","addressLocality":"Alpharetta","addressRegion":"Georgia","postalCode":"30009","addressCountry":"US"},"logo":{"@type":"ImageObject","@id":"https://www.haircycle.com/#logo","url":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/cropped-HairCycle-logo-main.png","contentUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/cropped-HairCycle-logo-main.png","caption":"Hair Cycle Store","inLanguage":"en-US","width":"350","height":"86"},"contactPoint":[{"@type":"ContactPoint","telephone":"+1-678-203-2824","contactType":"customer support"}],"location":{"@id":"https://www.haircycle.com/#place"}},{"@type":"WebSite","@id":"https://www.haircycle.com/#website","url":"https://www.haircycle.com","name":"Hair Cycle Store","alternateName":"HairCycle","publisher":{"@id":"https://www.haircycle.com/#organization"},"inLanguage":"en-US","potentialAction":{"@type":"SearchAction","target":"https://www.haircycle.com/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"ImageObject","@id":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-300x300.png","url":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-300x300.png","width":"200","height":"200","inLanguage":"en-US"},{"@type":"WebPage","@id":"https://www.haircycle.com/#webpage","url":"https://www.haircycle.com/","name":"HairCycle | Hair Loss Products &amp; Hair Transplant Treatments","datePublished":"2024-10-23T10:07:57+00:00","dateModified":"2026-01-20T06:54:55+00:00","about":{"@id":"https://www.haircycle.com/#organization"},"isPartOf":{"@id":"https://www.haircycle.com/#website"},"primaryImageOfPage":{"@id":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-300x300.png"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://www.haircycle.com/#author","name":"peggi","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/898f2fea8f1bcdc0a70677521dfe375a3c37c1934e4f0b3196586db7b82594e0?s=96&amp;d=mm&amp;r=g","url":"https://secure.gravatar.com/avatar/898f2fea8f1bcdc0a70677521dfe375a3c37c1934e4f0b3196586db7b82594e0?s=96&amp;d=mm&amp;r=g","caption":"peggi","inLanguage":"en-US"},"worksFor":{"@id":"https://www.haircycle.com/#organization"}},{"headline":"HairCycle | Hair Loss Products &amp; Hair Transplant Treatments","description":"Discover HairCycle&#039;s range of hair loss products and treatments designed to support hair transplants, promote growth, and prevent hair loss.","datePublished":"2024-10-23T10:07:57+00:00","dateModified":"2026-01-20T06:54:55+00:00","keywords":"hair loss","image":{"@id":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-300x300.png"},"author":{"@id":"https://www.haircycle.com/#author","name":"peggi"},"@type":"Article","name":"HairCycle | Hair Loss Products &amp; Hair Transplant Treatments","@id":"https://www.haircycle.com/#schema-63454","isPartOf":{"@id":"https://www.haircycle.com/#webpage"},"publisher":{"@id":"https://www.haircycle.com/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.haircycle.com/#webpage"}}]}</script>
<!-- /Rank Math WordPress SEO plugin -->

<link rel="alternate" type="application/rss+xml" title="Hair Cycle Store &raquo; Feed" href="https://www.haircycle.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Hair Cycle Store &raquo; Comments Feed" href="https://www.haircycle.com/comments/feed/" />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.haircycle.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.haircycle.com%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.haircycle.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.haircycle.com%2F&#038;format=xml" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<link rel='stylesheet' id='mailchimp-sms-consent-style-css' href='https://www.haircycle.com/wp-content/plugins/mailchimp-for-woocommerce/blocks/build/style-sms-consent-block.css?ver=1779715706' media='all' />
<style id="classic-theme-styles-inline-css">
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
</style>
<style id="etb-grid-style-inline-css">
.wp-block-etb-grid{display:grid;min-height:0;min-width:0;position:relative}.wp-block-etb-grid.has-box-shadow .wp-block-etb-grid-item{box-shadow:0 0 5px rgba(0,0,0,.1)}.wp-block-etb-grid.etb-has-bar.etb_left .wp-block-etb-grid-item{border-left-style:solid}.wp-block-etb-grid.etb-has-bar.etb_right .wp-block-etb-grid-item{border-right-style:solid}.wp-block-etb-grid.etb-has-bar.etb_top .wp-block-etb-grid-item{border-top-style:solid}.wp-block-etb-grid.etb-has-bar.etb_bottom .wp-block-etb-grid-item{border-bottom-style:solid}.wp-block-etb-grid .wp-block-etb-grid-item{box-sizing:border-box;min-width:0}.wp-block-etb-grid .wp-block-etb-grid-item .testimonial-header{align-items:center;display:flex;justify-content:space-between}.wp-block-etb-grid .wp-block-etb-grid-item .rating{text-align:center}.wp-block-etb-grid .wp-block-etb-grid-item .rating .rating-value{font-size:1em;font-weight:600}.wp-block-etb-grid .wp-block-etb-grid-item .rate-base-layer span{color:#ccc}.wp-block-etb-grid .wp-block-etb-grid-item .testimonial-message{margin:20px 0 30px}.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-info{align-items:flex-start;display:flex}.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-photo{overflow:hidden}.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-photo img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-info-content{margin-left:15px}.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-name{margin:0 0 5px!important}.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-company,.wp-block-etb-grid .wp-block-etb-grid-item .reviewer-title{margin:0!important}

/*# sourceURL=https://www.haircycle.com/wp-content/plugins/easy-testimonial-blocks/build/blocks/grid/style-index.css */
</style>
<style id="etb-grid-item-style-inline-css">


/*# sourceURL=https://www.haircycle.com/wp-content/plugins/easy-testimonial-blocks/build/blocks/grid-item/style-index.css */
</style>
<style id="rank-math-related-posts-style-inline-css">
.wp-block-rank-math-related-posts{--rm-related-gap: 1rem;--rm-related-border-radius: 6px;--rm-related-card-padding: 16px;--rm-related-hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);--rm-related-transition: 0.2s ease}.wp-block-rank-math-related-posts.rank-math-related-posts{display:block}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-wrap{display:grid;gap:var(--rm-related-gap)}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-vertical .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-vertical .rank-math-related-wrap{grid-template-columns:repeat(auto-fill, minmax(220px, 1fr))}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-wrap{grid-template-columns:repeat(auto-fill, minmax(400px, 1fr))}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-item{display:flex;gap:16px;align-items:flex-start}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb{flex:0 0 140px;overflow:hidden}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb img{width:140px;height:140px;-o-object-fit:cover;object-fit:cover}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-content,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-content{flex:1;min-width:0;display:flex;flex-direction:column}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-title,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-title{margin-top:0}@media (max-width: 640px){.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-wrap{grid-template-columns:1fr}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb{flex:0 0 100px}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb img{width:100px;height:100px}}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-vertical .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-vertical .rank-math-related-wrap{grid-template-columns:1fr}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-wrap{grid-template-columns:1fr}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-item{display:flex;gap:20px;align-items:flex-start}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb{flex:0 0 180px;overflow:hidden}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb img{width:180px;height:180px;-o-object-fit:cover;object-fit:cover}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-content,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-content{flex:1;min-width:0;display:flex;flex-direction:column}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-title,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-title{margin-top:0}@media (max-width: 640px){.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-item{gap:16px}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb{flex:0 0 120px}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb img{width:120px;height:120px}}@media (max-width: 480px){.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-item{flex-direction:column}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb{flex:0 0 auto;width:100%}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb img{width:100%;height:auto;max-height:200px}}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-item{border-radius:var(--rm-related-border-radius);padding:var(--rm-related-card-padding);background:inherit;transition:transform var(--rm-related-transition),box-shadow var(--rm-related-transition)}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-item:hover{transform:translateY(-2px);box-shadow:var(--rm-related-hover-shadow)}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title{margin:0.5rem 0;font-size:inherit;line-height:inherit}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title a{color:inherit;text-decoration:none;transition:color 0.2s ease}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title a:hover{color:#2563eb;text-decoration:underline}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title:not(:has(a)){cursor:default}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb{position:relative;overflow:hidden;border-radius:4px;display:block}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb img{display:block;width:100%;height:auto;border-radius:4px;transition:transform 0.3s ease}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb:hover img{transform:scale(1.05)}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb:not(a){cursor:default}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb:not(a):hover img{transform:none}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-date{margin-top:0.25rem;font-size:0.85em;opacity:0.7}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-terms{margin-top:0.5rem}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-chip{display:inline-block;background:#f3f4f6;border:1px solid #e5e7eb;border-radius:999px;padding:0.15rem 0.5rem;margin-right:0.35rem;font-size:0.8em}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-excerpt{margin-top:0.5rem;color:inherit;opacity:0.8;font-size:0.9em;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-more{margin-top:1rem}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-button{display:inline-block;background:#111827;color:#fff;border-radius:6px;padding:0.625rem 1.25rem;text-decoration:none;font-weight:500;transition:background 0.2s ease, transform 0.2s ease}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-button:hover{background:#1f2937;transform:translateY(-1px)}.wp-block-rank-math-related-posts.has-border-color .rank-math-related-item{border-color:inherit}.wp-block-rank-math-related-posts.has-border-width .rank-math-related-item{border-width:inherit}.wp-block-rank-math-related-posts.has-border-style .rank-math-related-item{border-style:inherit}.wp-block-rank-math-related-posts.has-border-radius .rank-math-related-item{border-radius:inherit}.wp-block-rank-math-related-posts:not(.has-border-color):not(.has-border-width):not(.has-border-style) .rank-math-related-item{border:1px solid #e5e7eb}

/*# sourceURL=https://www.haircycle.com/wp-content/plugins/seo-by-rank-math-pro/includes/modules/link-genius/blocks/related/assets/css/styles.css */
</style>
<link rel='stylesheet' id='eb-reusable-block-style-7073-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/eb-style/reusable-blocks/eb-reusable-7073.min.css?ver=9bdbb91ba2' media='all' />
<link rel='stylesheet' id='eb-reusable-block-style-7072-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/eb-style/reusable-blocks/eb-reusable-7072.min.css?ver=9bdbb91ba2' media='all' />
<link rel='stylesheet' id='eb-reusable-block-style-7071-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/eb-style/reusable-blocks/eb-reusable-7071.min.css?ver=9bdbb91ba2' media='all' />
<link rel='stylesheet' id='eb-reusable-block-style-7070-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/eb-style/reusable-blocks/eb-reusable-7070.min.css?ver=9bdbb91ba2' media='all' />
<style id="woocommerce-inline-inline-css">
.woocommerce form .form-row .required { visibility: visible; }
.woocommerce form .form-row abbr.required { visibility: visible; }
/*# sourceURL=woocommerce-inline-inline-css */
</style>
<link rel='stylesheet' id='reyModulePreloaders-styles-css' href='https://www.haircycle.com/wp-content/plugins/rey-module-preloaders/assets/css/text-1.css?ver=1.1.1' media='all' />
<link rel='stylesheet' id='print-protection.css-css' href='https://www.haircycle.com/wp-content/plugins/wccp-pro/css/print-protection.css?css_js_files_version_num=25&#038;ver=7.0' media='all' />
<style id="elementor-pro-custom-fonts-inline-css">
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueMedium.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueThin.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueHeavy.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueBlack.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueLight.ttf') format('truetype');
}

@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/proximanova_black-1.ttf') format('truetype');
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/proximanova_regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: ;
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/proximanova_bold.ttf') format('truetype');
}

/*# sourceURL=elementor-pro-custom-fonts-inline-css */
</style>
<link rel='stylesheet' id='dashicons-css' href='https://www.haircycle.com/wp-includes/css/dashicons.min.css?ver=7.0' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.0.9' media='all' />
<link id="rey-hs-css" type="text/css" href="https://www.haircycle.com/wp-content/uploads/sites/4/rey/hs-f13254acd0.css?ver=3.1.10.1768891366"  rel="stylesheet" media="all"  />
<link id="rey-ds-css" type="text/css" href="https://www.haircycle.com/wp-content/uploads/sites/4/rey/ds-93b89d3c3e.css?ver=3.1.10.1768891366" data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet';" media="all"  />
<noscript><link rel="stylesheet" href="https://www.haircycle.com/wp-content/uploads/sites/4/rey/ds-93b89d3c3e.css" data-no-minify="1"></noscript>
<link rel='stylesheet' id='eael-general-css' href='https://www.haircycle.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.6.5' media='all' />
<link rel='stylesheet' id='eael-4041-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/essential-addons-elementor/eael-4041.css?ver=1768892095' media='all' />
<link rel='stylesheet' id='elementor-post-154-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-154.css?ver=1780930310' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-animation-shrink-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-social-icons-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-apple-webkit-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' />
<link rel='stylesheet' id='e-swiper-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-image-carousel-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-ribbon-css' href='https://www.haircycle.com/wp-content/plugins/elementor-pro/assets/css/conditionals/ribbon.min.css?ver=4.0.4' media='all' />
<link rel='stylesheet' id='widget-price-table-css' href='https://www.haircycle.com/wp-content/plugins/elementor-pro/assets/css/widget-price-table.min.css?ver=4.0.4' media='all' />
<link rel='stylesheet' id='widget-toggle-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/widget-toggle.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='elementor-post-4041-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-4041.css?ver=1780931211' media='all' />
<link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=6.6.5' media='all' />
<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=6.6.5' media='all' />
<link rel='stylesheet' id='elementor-post-438-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-438.css?ver=1780930310' media='all' />
<link rel="stylesheet" onload="this.onload=null;this.media='all';" media="print"  data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-no-rel='stylesheet' id='elementor-post-655-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-655.css?ver=1780930310' data-media='all' />
<noscript><link rel='stylesheet' data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-id='elementor-post-655-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-655.css?ver=1780930310' data-media='all' />
</noscript><link rel="stylesheet" onload="this.onload=null;this.media='all';" media="print"  data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-no-rel='stylesheet' id='elementor-post-149-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-149.css?ver=1780930310' data-media='all' />
<noscript><link rel='stylesheet' data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-id='elementor-post-149-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-149.css?ver=1780930310' data-media='all' />
</noscript><link rel='stylesheet' id='elementor-gf-local-poppins-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/google-fonts/css/poppins.css?ver=1742744249' media='all' />
<script id="jquery-core-js" src="https://www.haircycle.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
<script id="jquery-migrate-js" src="https://www.haircycle.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
<script data-wp-strategy="defer" defer id="wc-jquery-blockui-js" src="https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/woocommerce/blockui.js?ver=3.1.10"></script>
<script id="wc-add-to-cart-js-extra">
var wc_add_to_cart_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https://www.haircycle.com/cart/","is_cart":"","cart_redirect_after_add":"no"};
//# sourceURL=wc-add-to-cart-js-extra
</script>
<script data-wp-strategy="defer" defer id="wc-add-to-cart-js" src="https://www.haircycle.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=10.7.0"></script>
<script data-wp-strategy="defer" defer id="wc-js-cookie-js" src="https://www.haircycle.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.7.0"></script>
<script id="woocommerce-js-extra">
var woocommerce_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_password_show":"Show password","i18n_password_hide":"Hide password"};
//# sourceURL=woocommerce-js-extra
</script>
<script data-wp-strategy="defer" defer id="woocommerce-js" src="https://www.haircycle.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=10.7.0"></script>
<script id="font-awesome-4-shim-js" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=6.6.5"></script>
<link rel="https://api.w.org/" href="https://www.haircycle.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.haircycle.com/wp-json/wp/v2/pages/4041" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.haircycle.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.0" />
<link rel='shortlink' href='https://www.haircycle.com/' />
<style id="essential-blocks-global-styles">
            :root {
                --eb-global-primary-color: #101828;
--eb-global-secondary-color: #475467;
--eb-global-tertiary-color: #98A2B3;
--eb-global-text-color: #475467;
--eb-global-heading-color: #1D2939;
--eb-global-link-color: #444CE7;
--eb-global-background-color: #F9FAFB;
--eb-global-button-text-color: #FFFFFF;
--eb-global-button-background-color: #101828;
--eb-gradient-primary-color: linear-gradient(90deg, hsla(259, 84%, 78%, 1) 0%, hsla(206, 67%, 75%, 1) 100%);
--eb-gradient-secondary-color: linear-gradient(90deg, hsla(18, 76%, 85%, 1) 0%, hsla(203, 69%, 84%, 1) 100%);
--eb-gradient-tertiary-color: linear-gradient(90deg, hsla(248, 21%, 15%, 1) 0%, hsla(250, 14%, 61%, 1) 100%);
--eb-gradient-background-color: linear-gradient(90deg, rgb(250, 250, 250) 0%, rgb(233, 233, 233) 49%, rgb(244, 243, 243) 100%);

                --eb-tablet-breakpoint: 1024px;
--eb-mobile-breakpoint: 767px;

            }
            
            
        </style><!-- Google site verification - Google for WooCommerce -->
<meta name="google-site-verification" content="RtE3lABzuO_IgWS-p-DSNy4JTi1z_SJ24Oi5WLqqah0" />
	<noscript><style>
		.woocommerce ul.products li.product.is-animated-entry {opacity: 1;transform: none;}
		.woocommerce div.product .woocommerce-product-gallery:after {display: none;}
		.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {opacity: 1}
	</style></noscript>
		<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
	<meta name="generator" content="Elementor 4.0.9; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueMedium.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueThin.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueHeavy.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueBlack.ttf') format('truetype');
}
@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/HelveticaNeueLight.ttf') format('truetype');
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/proximanova_black-1.ttf') format('truetype');
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/proximanova_regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: ;
}
@font-face {
	font-family: 'Proxima Nova Font';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://www.haircycle.com/wp-content/uploads/sites/4/2024/10/proximanova_bold.ttf') format('truetype');
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JG5GW3N9TH"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-JG5GW3N9TH');
</script>
<script id='nitro-telemetry-meta' nitro-exclude>window.NPTelemetryMetadata={missReason: (!window.NITROPACK_STATE ? 'cache not found' : 'hit'),pageType: 'home',isEligibleForOptimization: true,}</script><script id='nitro-generic' nitro-exclude>(()=>{if(window.NitroPack=window.NitroPack||{coreVersion:"na",isCounted:!1},!window.NitroPack.isCounted){window.NitroPack.isCounted=!0;const e=()=>{let e=performance.getEntriesByType("navigation")[0];return document.prerendering||e?.activationStart>0?"_prr":e&&e.responseStart-e.requestStart<=5?"_pre":"_dow"},i=e=>{navigator.sendBeacon("https://to.getnitropack.com/p",JSON.stringify({siteId:"WetwIHPRXgyvPHfpkgjUDFIlSQivbtVT",url:window.location.href,isOptimized:!!window.IS_NITROPACK,coreVersion:"na",missReason:window.NPTelemetryMetadata?.missReason||"",pageType:window.NPTelemetryMetadata?.pageType||"",isEligibleForOptimization:!!window.NPTelemetryMetadata?.isEligibleForOptimization||!1,pageLoadMode:e}))};(async()=>{await new Promise(e=>{document.prerendering?document.addEventListener("prerenderingchange",e,{once:!0}):e()}),await new Promise(e=>{"complete"===document.readyState?e():window.addEventListener("load",e)}),i(e())})(),window.addEventListener("pageshow",e=>{if(e.persisted){let e=document.prerendering||self.performance?.getEntriesByType?.("navigation")[0]?.activationStart>0;"visible"!==document.visibilityState||e||i("_bfr")}})}})();</script><link rel="icon" href="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/cropped-hc-favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/cropped-hc-favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/cropped-hc-favicon-180x180.png" />
<meta name="msapplication-TileImage" content="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/cropped-hc-favicon-270x270.png" />
<style id="wp-custom-css">
button.rey-headerIcon-btn.rey-headerAccount-btn {border:1px #000 solid;padding:10px 20px 10px 20px;}

@media only screen and (min-width: 981px) {
.rey-swatches form.cart :is(th.label,td.label) {line-height:2.5;}
	.wc-tabs-wrapper .wc-tabs li a {    color: #000;}
.e-con-inner p a {text-decoration:underline;}
.wp-block-image .aligncenter>figcaption,
.wp-block-image figcaption {
  display: none !important;
}
.woocommerce-checkout #payment ul.payment_methods .wc_payment_method.payment_method_stripe_googlepay > label {width: 180px;}
	.woocommerce-checkout #payment ul.payment_methods .wc_payment_method img, #add_payment_method #payment ul.payment_methods .wc_payment_method img{margin-left:10px;}
	.woocommerce-checkout #payment ul.payment_methods .wc_payment_method input, #add_payment_method #payment ul.payment_methods .wc_payment_method input {height: 20px; width: 20px;}
	
</style>
<style id="reycore-inline-styles" data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1">@media (min-width: 768px) and (max-width: 1025px){:root{--rey-container-spacing:15px;--main-gutter-size:15px;--blog-columns:1;--scroll-top-bottom:10vh;--woocommerce-products-gutter:10px;--woocommerce-summary-padding:0px;}}@media (max-width: 767px){:root{--rey-container-spacing:15px;--main-gutter-size:15px;--blog-columns:1;--scroll-top-bottom:10vh;--woocommerce-products-gutter:10px;--woocommerce-summary-padding:0px;}}:root{--body-bg-color:#ffffff;--link-color:var(--e-global-color-primary);--link-color-hover:var(--e-global-color-accent);--neutral-hue:210;--sticky-gs-top-color:var(--e-global-color-631b7b7f);--sticky-gs-top-bg-color:var(--e-global-color-75147354);--blog-columns:2;--scrolltotop-color:#edb371;--scroll-top-bottom:10vh;--header-nav-mobile-panel-bg-color:#efefef;--woocommerce-products-gutter:50px;--woocommerce-sidebar-size:16%;--woocommerce-summary-size:60%;--woocommerce-summary-padding:75px;}body.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product[class*="rey-wc-skin"] .woocommerce-loop-product__title{font-family:var(--primary-ff);font-size:16px;font-weight:400;}.woocommerce-store-notice .woocommerce-store-notice-content{min-height:32px;}@media (max-width: 1024px) {			:root {				--nav-breakpoint-desktop: none;				--nav-breakpoint-mobile: flex;			}		} :root{--body-font-family: var(--primary-ff);--link-color-hover:var(--e-global-color-accent);--accent-color:#213b5e;--accent-hover-color:#00082b;--accent-text-color:#fff;} :root {					--container-max-width: var(--site-width, 100vw);			} :root{ --woocommerce-grid-columns:3; } @media(min-width: 768px) and (max-width: 1024px){:root{ --woocommerce-grid-columns:2; }} @media(max-width: 767px){:root{ --woocommerce-grid-columns:2; }}      </style><style id="rey-lazy-bg">.rey-js .elementor-element.rey-lazyBg, .rey-js .elementor-element.rey-lazyBg > .elementor-widget-container, .rey-js .elementor-element.rey-lazyBg > .elementor-widget-wrap { background-image: none !important; }</style>
		<!-- Global site tag (gtag.js) - Google Ads: AW-16666141795 - Google for WooCommerce -->
		<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16666141795"></script>
		<script>
			window.dataLayer = window.dataLayer || [];
			function gtag() { dataLayer.push(arguments); }
			gtag( 'consent', 'default', {
				analytics_storage: 'denied',
				ad_storage: 'denied',
				ad_user_data: 'denied',
				ad_personalization: 'denied',
				region: ['AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IS', 'IE', 'IT', 'LV', 'LI', 'LT', 'LU', 'MT', 'NL', 'NO', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'GB', 'CH'],
				wait_for_update: 500,
			} );
			gtag('js', new Date());
			gtag('set', 'developer_id.dOGY3NW', true);
			gtag("config", "AW-16666141795", { "groups": "GLA", "send_page_view": false });		</script>

		</head>

<body class="home wp-singular page-template page-template-elementor_header_footer page page-id-4041 wp-custom-logo wp-theme-rey theme-rey woocommerce-no-js rey-no-js ltr woocommerce elementor-default elementor-template-full-width elementor-kit-154 elementor-page elementor-page-4041 rey-cwidth--full elementor-opt r-notices" data-id="4041" itemtype="https://schema.org/WebPage" itemscope="itemscope">

<script type="text/javascript" id="rey-no-js" data-noptimize data-no-optimize="1" data-no-defer="1">
		document.body.classList.remove('rey-no-js');document.body.classList.add('rey-js');
	</script>		<script type="text/javascript" id="rey-instant-js" data-noptimize="" data-no-optimize="1" data-no-defer="1" data-pagespeed-no-defer="">
			(function(){
				if( ! window.matchMedia("(max-width: 1024px)").matches && ("IntersectionObserver" in window) ){
					var io = new IntersectionObserver(entries => {
						window.reyScrollbarWidth = window.innerWidth - entries[0].boundingClientRect.width;
						document.documentElement.style.setProperty('--scrollbar-width', window.reyScrollbarWidth + "px");
						io.disconnect();
					});
					io.observe(document.documentElement);
				}
				let cw = parseInt(document.documentElement.getAttribute('data-container') || 1440);
				const sxl = function () {
					let xl;
					if ( window.matchMedia('(min-width: 1025px) and (max-width: ' + cw + 'px)').matches ) xl = 1; // 1440px - 1025px
					else if ( window.matchMedia('(min-width: ' + (cw + 1) + 'px)').matches ) xl = 2; // +1440px
					document.documentElement.setAttribute('data-xl', xl || 0);
				};
				sxl(); window.addEventListener('resize', sxl);
			})();
		</script>
		<script>
gtag("event", "page_view", {send_to: "GLA"});
</script>

	<a href="#content" class="skip-link screen-reader-text">Skip to content</a>

	<div id="page" class="rey-siteWrapper ">

		
<div class="rey-overlay rey-overlay--site" style="opacity:0;"></div>

		
<header class="rey-siteHeader rey-siteHeader--custom rey-siteHeader--438 header-pos--absolute" >

			<div data-elementor-type="wp-post" data-elementor-id="438" class="elementor elementor-438" data-elementor-post-type="rey-global-sections" data-elementor-gstype="header" data-page-el-selector="body.elementor-page-438">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-663da342 elementor-section-content-middle rey-section-bg--gradient elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="663da342" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-51fcf877" data-id="51fcf877" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--51fcf877 elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-4f379623 elementor-widget__width-auto elementor-widget-mobile__width-initial --il--tablet-stretch --il--mobile-left elementor-widget elementor-widget-reycore-header-logo" data-id="4f379623" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-logo.default">
				<div class="elementor-widget-container">
					
<div class="rey-logoWrapper">

	
        <div class="rey-siteLogo">
			<a href="https://www.haircycle.com/" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo-link" rel="home" itemprop="url"><img width="230" height="56" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/cropped-HairCycle-logo-main.png" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo" alt="HairCycle-logo-main" loading="eager" decoding="async" /></a>		</div>

    </div>
<!-- .rey-logoWrapper -->
				</div>
				</div>
				<div data-hoverlay="hide" class="elementor-element elementor-element-1138e1d7 elementor-widget__width-auto --il--right --il--tablet-left --il--mobile-left new-header-menu --icons-start --submenu-display-collapsed --tap-open --panel-dir--left elementor-widget elementor-widget-reycore-header-navigation" data-id="1138e1d7" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-navigation.default">
				<div class="elementor-widget-container">
					
<button class="btn rey-mainNavigation-mobileBtn rey-headerIcon __hamburger --hs-25bars" aria-label="Open menu">
	<div class="__bars">
		<span class="__bar"></span>
		<span class="__bar"></span>
		<span class="__bar"></span>
	</div>
	<svg aria-hidden="true" role="img" id="rey-icon-close-6a27989650731" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg></button>
<!-- .rey-mainNavigation-mobileBtn -->

    <nav id="site-navigation-1138e1d7" class="rey-mainNavigation rey-mainNavigation--desktop  --shadow-1" data-id="-1138e1d7" aria-label="Main Menu" data-sm-indicator="arrow2" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope">

        <ul id="main-menu-desktop-1138e1d7" class="rey-mainMenu rey-mainMenu--desktop id--mainMenu--desktop --has-indicators --submenu-top rey-navEl --menuHover-simple --megamenu-support"><li id="menu-item-5077" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5077 depth--0 --is-mega --is-mega-gs --mega-full menu-item-has-children"><a href="#"><span>Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a><div class="rey-mega-gs">		<div data-elementor-type="wp-post" data-elementor-id="4363" class="elementor elementor-4363" data-elementor-post-type="rey-global-sections" data-elementor-gstype="megamenu" data-page-el-selector="body.elementor-page-4363">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-92396f3 product-custom-menu elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="92396f3" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-5ee05d7 e-con-full e-flex e-con e-child" data-id="5ee05d7" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-02ac4d7 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="02ac4d7" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu --dd-menu --dd-menu--mobiles">
			<h2 class="reyEl-menuTitle reyEl-menuTitle--"><span><a href="/shop/hair-growth-products/" class="header-menu-weight">Hair Growth Products</a></span><svg aria-hidden="true" role="img" id="rey-icon-arrow-6a2798965cc13" class="rey-icon rey-icon-arrow " viewbox="0 0 22 13"><style type="text/css">.rey-icon-arrow.--to-left{transform:rotate(90deg) scale(0.7);}.rey-icon-arrow.--to-right{transform:rotate(-90deg) scale(0.7);}.rey-icon-arrow.--to-top{transform:rotate(180deg);}</style><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <polygon fill="currentColor" points="-0.01 2.44 10.99 13.073 21.98 2.44 19.5 0.008 10.99 8.243 2.47 0.008"></polygon></g></svg></h2><div class="reyEl-menu-navWrapper"><ul id="menu-category-hair-growth-products" class="reyEl-menu-nav rey-navEl --menuHover-"><li id="menu-item-4528" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4528 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
<li id="menu-item-4529" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4529 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
<li id="menu-item-4527" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4527 o-id-1306"><a href="https://www.haircycle.com/product/haircycle-texture-gel/"><span>Texture Gel</span></a></li>
<li id="menu-item-4526" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4526 o-id-3544"><a href="https://www.haircycle.com/product/help-hair-whey-protein/"><span>Help Hair Whey Protein</span></a></li>
<li id="menu-item-4525" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4525 o-id-3541"><a href="https://www.haircycle.com/product/viviscal-professional/"><span>Viviscal Professional</span></a></li>
<li id="menu-item-4524" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4524 o-id-3650"><a href="https://www.haircycle.com/product/elevai-enfinity-serum/"><span>ELEVAI Enfinity Serum</span></a></li>
<li id="menu-item-4523" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4523 o-id-3653"><a href="https://www.haircycle.com/product/intact-5-pre-shampoo/"><span>Intact 5 Pre-Shampoo</span></a></li>
<li id="menu-item-5774" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5774 o-id-1341"><a href="https://www.haircycle.com/product/rodan-and-fields-lash-boost/"><span>Rodan and Fields Lash Boost</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-cb355ff e-con-full e-flex e-con e-child" data-id="cb355ff" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-f01e8e6 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="f01e8e6" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu --dd-menu --dd-menu--mobiles">
			<h2 class="reyEl-menuTitle reyEl-menuTitle--"><span><a href="/shop/hair-transplant-products/" class="header-menu-weight">Hair Transplant Products</a></span><svg aria-hidden="true" role="img" id="rey-icon-arrow-6a27989661775" class="rey-icon rey-icon-arrow " viewbox="0 0 22 13"><style type="text/css">.rey-icon-arrow.--to-left{transform:rotate(90deg) scale(0.7);}.rey-icon-arrow.--to-right{transform:rotate(-90deg) scale(0.7);}.rey-icon-arrow.--to-top{transform:rotate(180deg);}</style><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <polygon fill="currentColor" points="-0.01 2.44 10.99 13.073 21.98 2.44 19.5 0.008 10.99 8.243 2.47 0.008"></polygon></g></svg></h2><div class="reyEl-menu-navWrapper"><ul id="menu-category-hair-transplant-products" class="reyEl-menu-nav rey-navEl --menuHover-"><li id="menu-item-4508" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4508 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
<li id="menu-item-4509" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4509 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
<li id="menu-item-4506" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4506 o-id-1310"><a href="https://www.haircycle.com/product/post-biotin-spray/"><span>⁠HairCycle Post-Biotin Spray</span></a></li>
<li id="menu-item-4507" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4507 o-id-1314"><a href="https://www.haircycle.com/product/haircycle-post-surgical-gel/"><span>HairCycle Post Surgical Gel</span></a></li>
<li id="menu-item-4510" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4510 o-id-1320"><a href="https://www.haircycle.com/product/hair-transplant-kit/"><span>Hair Transplant Kit</span></a></li>
<li id="menu-item-6296" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-6296 o-id-1316"><a href="https://www.haircycle.com/product/haircycle-basic-kit/"><span>HairCycle Basic Kit</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-59d261a e-con-full e-flex e-con e-child" data-id="59d261a" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-8f62550 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="8f62550" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu --dd-menu --dd-menu--mobiles">
			<h2 class="reyEl-menuTitle reyEl-menuTitle--"><span><a href="/shop/hair-body-supplements/" class="header-menu-weight">Hair & Body Supplements</a></span><svg aria-hidden="true" role="img" id="rey-icon-arrow-6a2798966598d" class="rey-icon rey-icon-arrow " viewbox="0 0 22 13"><style type="text/css">.rey-icon-arrow.--to-left{transform:rotate(90deg) scale(0.7);}.rey-icon-arrow.--to-right{transform:rotate(-90deg) scale(0.7);}.rey-icon-arrow.--to-top{transform:rotate(180deg);}</style><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <polygon fill="currentColor" points="-0.01 2.44 10.99 13.073 21.98 2.44 19.5 0.008 10.99 8.243 2.47 0.008"></polygon></g></svg></h2><div class="reyEl-menu-navWrapper"><ul id="menu-category-hair-body-supplements" class="reyEl-menu-nav rey-navEl --menuHover-"><li id="menu-item-4516" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4516 o-id-3543"><a href="https://www.haircycle.com/product/iodine/"><span>Lodine +</span></a></li>
<li id="menu-item-4521" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4521 o-id-3542"><a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/"><span>Neuro Performance Plasmalogens</span></a></li>
<li id="menu-item-4519" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4519 o-id-3517"><a href="https://www.haircycle.com/product/nitric-oxiden-n-o/"><span>Nitric Oxide Premium Supplement 60 Caps</span></a></li>
<li id="menu-item-7468" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7468 o-id-3536"><a href="https://www.haircycle.com/product/dim-sgs/"><span>Dim SGS+</span></a></li>
<li id="menu-item-4517" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4517 o-id-3535"><a href="https://www.haircycle.com/product/methyl-factors/"><span>Methyl Factors</span></a></li>
<li id="menu-item-4512" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4512 o-id-3508"><a href="https://www.haircycle.com/product/adk-5/"><span>ADK 5</span></a></li>
<li id="menu-item-7471" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7471 o-id-3510"><a href="https://www.haircycle.com/product/adk-10/"><span>ADK 10</span></a></li>
<li id="menu-item-4522" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4522 o-id-3529"><a href="https://www.haircycle.com/product/melatonin-60mg-dfs/"><span>Melatonin 60mg (DFS)</span></a></li>
<li id="menu-item-5443" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5443 o-id-5435"><a href="https://www.haircycle.com/product/prodromeglia-softgels/"><span>ProdromeGlia</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ba5832b e-con-full e-flex e-con e-child" data-id="ba5832b" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-1c065f0 header-menu-weight elementor-widget elementor-widget-heading" data-id="1c065f0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default"><a href="/shop/skincare/">Skincare</a></h2>				</div>
				</div>
				<div class="elementor-element elementor-element-92637e3 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="92637e3" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu">
			<div class="reyEl-menu-navWrapper"><ul id="menu-category-skincare" class="reyEl-menu-nav rey-navEl --menuHover-"><li id="menu-item-5867" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5867 o-id-5822"><a href="https://www.haircycle.com/product/anti-aging-nitric-oxide-activating-serum/"><span>Anti-Aging Nitric Oxide Activating Serum</span></a></li>
<li id="menu-item-5868" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5868 o-id-4481"><a href="https://www.haircycle.com/product/cicaplast-baume-b5-cream-for-skin-regeneration-soothing/"><span>Cicaplast Baume B5+ Cream For Skin Regeneration &#038; Soothing</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-b5ccba5 elementor-hidden-desktop side-content-canvas-custom e-flex e-con-boxed e-con e-parent" data-id="b5ccba5" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
					</div>
				</div>
				</div>
		</div></li>
<li id="menu-item-4929" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4929 depth--0 --is-regular o-id-13"><a href="https://www.haircycle.com/shop/"><span>Shop</span></a></li>
<li id="menu-item-1757" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1757 depth--0 --is-mega o-id-1109 --is-mega-gs --mega-full menu-item-has-children"><a href="https://www.haircycle.com/about-haircycle/"><span>Learn</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a><div class="rey-mega-gs">		<div data-elementor-type="wp-post" data-elementor-id="1760" class="elementor elementor-1760" data-elementor-post-type="rey-global-sections" data-elementor-gstype="megamenu" data-page-el-selector="body.elementor-page-1760">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-fd002f4 e-flex e-con-boxed e-con e-parent" data-id="fd002f4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-80e29bf e-con-full e-flex e-con e-child" data-id="80e29bf" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-dab6af3 elementor-widget elementor-widget-heading" data-id="dab6af3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">About HairCycle</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-5b5bdf9 reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="5b5bdf9" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.custom-items">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu">
			<div class="reyEl-menu-navWrapper"><ul class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item "><a class="" href="/about-haircycle/"><span>About Us</span></a></li><li class="menu-item "><a class="" href="/the-haircycle-science/"><span>The HairCycle Science</span></a></li><li class="menu-item "><a class="" href="/about-hair-loss/"><span>All About Hair Loss</span></a></li><li class="menu-item "><a class="" href="/haircycle-and-hair-transplant-surgery/"><span>HairCycle & Hair Transplant</span></a></li><li class="menu-item "><a class="" href="/dht-inhibitors/"><span>DHT Inhibitors</span></a></li><li class="menu-item "><a class="" href="https://www.haircycle.com/anagen-stimulators-effect-hair-loss/"><span>Anagen Stimulators</span></a></li></ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1ef9c29 e-con-full e-flex e-con e-child" data-id="1ef9c29" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-8688b6d elementor-widget elementor-widget-heading" data-id="8688b6d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Customer Reviews</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-c82d84d elementor-widget elementor-widget-text-editor" data-id="c82d84d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<div class="u-toggle-text u-toggle-text-wrapper --collapsed" data-height="12"><div class="u-toggle-content">Every HairCycle customer undergoes a unique journey. Discover firsthand testimonials showcasing the diverse personal progress experienced by our valued clientele.</div><button class="btn u-toggle-btn" aria-label="Toggle" data-read-more="Read more" data-read-less="Less"></button></div>								</div>
				</div>
				<div class="elementor-element elementor-element-e73e0ba --btn-block--yes elementor-widget elementor-widget-button" data-id="e73e0ba" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/reviews/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-thumbs-up" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"></path></svg>			</span>
									<span class="elementor-button-text">Read Reviews</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f6b5b1d elementor-widget elementor-widget-heading" data-id="f6b5b1d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">F.A.Q</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-6c9a8e0 elementor-widget elementor-widget-text-editor" data-id="6c9a8e0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									Frequently asked questions about the HairCycle hair treatment products.								</div>
				</div>
				<div class="elementor-element elementor-element-462edca --btn-block--yes elementor-widget elementor-widget-button" data-id="462edca" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/frequently-asked-questions/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-question-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"></path></svg>			</span>
									<span class="elementor-button-text">Frequently Asked Questions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
				</div>
		</div></li>
<li id="menu-item-1759" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1759 depth--0 --is-regular o-id-1400"><a href="https://www.haircycle.com/physicians-area/"><span>Professionals</span></a></li>
<li id="menu-item-105" class="--separated menu-item menu-item-type-post_type menu-item-object-page menu-item-105 depth--0 --is-regular o-id-90"><a href="https://www.haircycle.com/blog/"><span>Blog</span></a></li>
<li id="menu-item-1758" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1758 depth--0 --is-regular o-id-1356"><a href="https://www.haircycle.com/contact/"><span>Contact</span></a></li>
</ul>	</nav><!-- .rey-mainNavigation -->



	<nav
		id="site-navigation-mobile-1138e1d7"
		class="rey-mainNavigation rey-mainNavigation--mobile rey-mobileNav "
		data-id="-1138e1d7" aria-label="Main Menu" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"	>
		<div class="rey-mobileNav-container">
			<div class="rey-mobileNav-header">

				
				<div class="rey-siteLogo">
					<a href="https://www.haircycle.com/" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo-link" rel="home" itemprop="url"><img width="60" height="40" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/cropped-HairCycle-logo-main.png" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo" alt="HairCycle-logo-main" loading="eager" decoding="async" /></a>				</div>

				<button class="__arrClose btn rey-mobileMenu-close js-rey-mobileMenu-close" aria-label="Close menu"><span class="__icons"><svg aria-hidden="true" role="img" id="rey-icon-close-6a2798967db9a" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg><svg aria-hidden="true" role="img" id="rey-icon-arrow-classic-6a2798967dbac" class="rey-icon rey-icon-arrow-classic " viewbox="0 0 16 16"><polygon fill="var(--icon-fill, currentColor)" points="8 0 6.6 1.4 12.2 7 0 7 0 9 12.2 9 6.6 14.6 8 16 16 8"></polygon></svg></span></button>
			</div>

			<div class="rey-mobileNav-main">
				<div class="menu-product-menu-new-container"><ul id="main-menu-mobile-1138e1d7" class="rey-mainMenu rey-mainMenu-mobile --megamenu-support"><li id="menu-item-4661" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4661 o-id-13"><a href="https://www.haircycle.com/shop/"><span>Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
<ul class="sub-menu">
	<li id="menu-item-4715" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-4715 o-id-104"><a href="https://www.haircycle.com/shop/hair-growth-products/"><span>Hair Growth Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
	<ul class="sub-menu">
		<li id="menu-item-4614" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4614 o-id-3544"><a href="https://www.haircycle.com/product/help-hair-whey-protein/"><span>Help Hair Whey Protein</span></a></li>
		<li id="menu-item-4624" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4624 o-id-3541"><a href="https://www.haircycle.com/product/viviscal-professional/"><span>Viviscal Professional</span></a></li>
		<li id="menu-item-4607" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4607 o-id-3650"><a href="https://www.haircycle.com/product/elevai-enfinity-serum/"><span>ELEVAI Enfinity Serum</span></a></li>
		<li id="menu-item-4629" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4629 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
		<li id="menu-item-4628" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4628 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
		<li id="menu-item-4613" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4613 o-id-1306"><a href="https://www.haircycle.com/product/haircycle-texture-gel/"><span>HairCycle Texture Gel</span></a></li>
		<li id="menu-item-4615" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4615 o-id-3653"><a href="https://www.haircycle.com/product/intact-5-pre-shampoo/"><span>Intact 5 Pre-Shampoo</span></a></li>
		<li id="menu-item-4723" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4723 o-id-1341"><a href="https://www.haircycle.com/product/rodan-and-fields-lash-boost/"><span>Rodan + Fields</span></a></li>
	</ul>
</li>
	<li id="menu-item-4709" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-4709 o-id-105"><a href="https://www.haircycle.com/shop/hair-body-supplements/"><span>Hair &amp; Body Supplements</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
	<ul class="sub-menu">
		<li id="menu-item-4616" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4616 o-id-3543"><a href="https://www.haircycle.com/product/iodine/"><span>Iodine +</span></a></li>
		<li id="menu-item-4619" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4619 o-id-3542"><a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/"><span>Neuro Performance Plasmalogens</span></a></li>
		<li id="menu-item-4620" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4620 o-id-3517"><a href="https://www.haircycle.com/product/nitric-oxiden-n-o/"><span>Nitric Oxide Premium Supplement 60 Caps</span></a></li>
		<li id="menu-item-7469" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7469 o-id-3536"><a href="https://www.haircycle.com/product/dim-sgs/"><span>Dim SGS+</span></a></li>
		<li id="menu-item-4618" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4618 o-id-3535"><a href="https://www.haircycle.com/product/methyl-factors/"><span>Methyl Factors</span></a></li>
		<li id="menu-item-4603" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4603 o-id-3508"><a href="https://www.haircycle.com/product/adk-5/"><span>ADK 5</span></a></li>
		<li id="menu-item-7470" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7470 o-id-3510"><a href="https://www.haircycle.com/product/adk-10/"><span>ADK 10</span></a></li>
		<li id="menu-item-4617" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4617 o-id-3529"><a href="https://www.haircycle.com/product/melatonin-60mg-dfs/"><span>Melatonin 60mg (DFS)</span></a></li>
	</ul>
</li>
	<li id="menu-item-4708" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-4708 o-id-106"><a href="https://www.haircycle.com/shop/hair-transplant-products/"><span>Hair Transplant Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
	<ul class="sub-menu">
		<li id="menu-item-4611" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4611 o-id-1314"><a href="https://www.haircycle.com/product/haircycle-post-surgical-gel/"><span>HairCycle Post Surgical Gel</span></a></li>
		<li id="menu-item-4622" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4622 o-id-1310"><a href="https://www.haircycle.com/product/post-biotin-spray/"><span>HairCycle Post Biotin Spray</span></a></li>
		<li id="menu-item-4608" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4608 o-id-1320"><a href="https://www.haircycle.com/product/hair-transplant-kit/"><span>Hair Transplant Kit</span></a></li>
		<li id="menu-item-4724" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4724 o-id-1316"><a href="https://www.haircycle.com/product/haircycle-basic-kit/"><span>HairCycle Basic Kit</span></a></li>
		<li id="menu-item-4612" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4612 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
		<li id="menu-item-4610" class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4610 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
	</ul>
</li>
</ul>
</li>
<li id="menu-item-4798" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4798 o-id-13"><a href="https://www.haircycle.com/shop/"><span>Shop</span></a></li>
<li id="menu-item-4659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4659 o-id-1109 --is-mega --is-mega-gs --mega-full menu-item-has-children"><a href="https://www.haircycle.com/about-haircycle/"><span>Learn</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a><div class="rey-mega-gs">		<div data-elementor-type="wp-post" data-elementor-id="1760" class="elementor elementor-1760" data-elementor-post-type="rey-global-sections" data-elementor-gstype="megamenu" data-page-el-selector="body.elementor-page-1760">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-fd002f4 e-flex e-con-boxed e-con e-parent" data-id="fd002f4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-80e29bf e-con-full e-flex e-con e-child" data-id="80e29bf" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-dab6af3 elementor-widget elementor-widget-heading" data-id="dab6af3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">About HairCycle</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-5b5bdf9 reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="5b5bdf9" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.custom-items">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu">
			<div class="reyEl-menu-navWrapper"><ul class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item "><a class="" href="/about-haircycle/"><span>About Us</span></a></li><li class="menu-item "><a class="" href="/the-haircycle-science/"><span>The HairCycle Science</span></a></li><li class="menu-item "><a class="" href="/about-hair-loss/"><span>All About Hair Loss</span></a></li><li class="menu-item "><a class="" href="/haircycle-and-hair-transplant-surgery/"><span>HairCycle & Hair Transplant</span></a></li><li class="menu-item "><a class="" href="/dht-inhibitors/"><span>DHT Inhibitors</span></a></li><li class="menu-item "><a class="" href="https://www.haircycle.com/anagen-stimulators-effect-hair-loss/"><span>Anagen Stimulators</span></a></li></ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1ef9c29 e-con-full e-flex e-con e-child" data-id="1ef9c29" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-8688b6d elementor-widget elementor-widget-heading" data-id="8688b6d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Customer Reviews</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-c82d84d elementor-widget elementor-widget-text-editor" data-id="c82d84d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<div class="u-toggle-text u-toggle-text-wrapper --collapsed" data-height="12"><div class="u-toggle-content">Every HairCycle customer undergoes a unique journey. Discover firsthand testimonials showcasing the diverse personal progress experienced by our valued clientele.</div><button class="btn u-toggle-btn" aria-label="Toggle" data-read-more="Read more" data-read-less="Less"></button></div>								</div>
				</div>
				<div class="elementor-element elementor-element-e73e0ba --btn-block--yes elementor-widget elementor-widget-button" data-id="e73e0ba" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/reviews/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-thumbs-up" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"></path></svg>			</span>
									<span class="elementor-button-text">Read Reviews</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f6b5b1d elementor-widget elementor-widget-heading" data-id="f6b5b1d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">F.A.Q</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-6c9a8e0 elementor-widget elementor-widget-text-editor" data-id="6c9a8e0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									Frequently asked questions about the HairCycle hair treatment products.								</div>
				</div>
				<div class="elementor-element elementor-element-462edca --btn-block--yes elementor-widget elementor-widget-button" data-id="462edca" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/frequently-asked-questions/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-question-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"></path></svg>			</span>
									<span class="elementor-button-text">Frequently Asked Questions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
				</div>
		</div></li>
<li id="menu-item-4662" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4662 o-id-1400"><a href="https://www.haircycle.com/physicians-area/"><span>Professionals</span></a></li>
<li id="menu-item-4658" class="--separated menu-item menu-item-type-post_type menu-item-object-page menu-item-4658 o-id-90"><a href="https://www.haircycle.com/blog/"><span>Blog</span></a></li>
<li id="menu-item-4660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4660 o-id-1356"><a href="https://www.haircycle.com/contact/"><span>Contact</span></a></li>
</ul></div>			</div>

			<div class="rey-mobileNav-footer">
				
<a href="https://www.haircycle.com/my-account/" class="rey-mobileNav--footerItem">
	Connect to your account	<svg aria-hidden="true" role="img" id="rey-icon-user-6a2798968e2f3" class="rey-icon rey-icon-user " viewbox="0 0 24 24"><path d="M8.68220488,13 L5.8,13 C4.7,11.6 4,9.9 4,8 C4,3.6 7.6,0 12,0 C16.4,0 20,3.6 20,8 C20,9.9 19.3,11.6 18.2,13 L15.3177951,13 C16.9344907,11.9250785 18,10.0869708 18,8 C18,4.6862915 15.3137085,2 12,2 C8.6862915,2 6,4.6862915 6,8 C6,10.0869708 7.06550934,11.9250785 8.68220488,13 Z"></path><path d="M18,14 L6,14 C2.7,14 0,16.7 0,20 L0,23 C0,23.6 0.4,24 1,24 L23,24 C23.6,24 24,23.6 24,23 L24,20 C24,16.7 21.3,14 18,14 Z M22,22 L2,22 L2,20 C2,17.8 3.8,16 6,16 L18,16 C20.2,16 22,17.8 22,20 L22,22 Z" ></path></svg></a>

			</div>
		</div>

	</nav>

				</div>
				</div>
				<div class="elementor-element elementor-element-5ee48118 elementor-widget__width-auto --has-button-yes --il--right elementor-hidden-mobile --inline-layout-ov --inline-mobile-icon elementor-widget elementor-widget-reycore-header-search" data-id="5ee48118" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-search.default">
				<div class="elementor-widget-container">
					
<div class="rey-headerSearch rey-headerIcon js-rey-headerSearch  --tp-before --hit-before">

	<button class="btn rey-headerIcon-btn rey-headerSearch-toggle js-rey-headerSearch-toggle">

		
		<span class="__icon rey-headerIcon-icon" aria-hidden="true"><svg aria-hidden="true" role="img" id="rey-icon-search-6a2798968ffdb" class="rey-icon rey-icon-search icon-search" viewbox="0 0 24 24"><circle stroke="currentColor" stroke-width="2.2" fill="none" cx="11" cy="11" r="10"></circle>
			<path d="M20.0152578,17.8888876 L23.5507917,21.4244215 C24.1365782,22.010208 24.1365782,22.9599554 23.5507917,23.5457419 C22.9650053,24.1315283 22.0152578,24.1315283 21.4294714,23.5457419 L17.8939375,20.010208 C17.3081511,19.4244215 17.3081511,18.4746741 17.8939375,17.8888876 C18.4797239,17.3031012 19.4294714,17.3031012 20.0152578,17.8888876 Z" fill="currentColor" stroke="none"></path></svg> <svg data-abs="" data-transparent="" aria-hidden="true" role="img" id="rey-icon-close-6a2798968fffe" class="rey-icon rey-icon-close icon-close" viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg></span>
		<span class="screen-reader-text">Search open</span>

	</button>
	<!-- .rey-headerSearch-toggle -->

</div>
				</div>
				</div>
				<div class="elementor-element elementor-element-639c4d00 elementor-widget__width-auto elementor-widget elementor-widget-reycore-header-cart" data-id="639c4d00" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-cart.default">
				<div class="elementor-widget-container">
					
<div class="rey-headerCart-wrapper rey-headerIcon  " data-rey-cart-count="0">
	<button  class="btn rey-headerIcon-btn rey-headerCart js-rey-headerCart">
        <span class="__icon rey-headerIcon-icon " aria-hidden="true"><svg aria-hidden="true" role="img" id="rey-icon-cart-6a2798969162e" class="rey-icon rey-icon-cart " viewbox="0 0 100 77"><g  stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <path d="M100,12.523 L24.5,12.523 L23.521,9.105 C20.574,-1.391 6.253,-3.204 0.8,6.338 C-1.482,10.334 4.513,13.759 6.796,9.763 C9.204,5.55 15.587,6.353 16.881,10.992 L31.69,62.739 C30.081,60.341 27.347,58.762 24.244,58.762 C19.295,58.762 15.283,62.774 15.283,67.719 C15.283,72.668 19.295,76.682 24.244,76.682 C29.193,76.682 33.202,72.668 33.202,67.719 C33.202,67.028 33.116,66.362 32.969,65.717 L46.828,65.717 L67.339,65.717 C67.184,66.375 67.093,67.061 67.093,67.772 C67.093,72.721 71.103,76.733 76.052,76.733 C81,76.733 85.012,72.721 85.012,67.772 C85.012,62.877 81.085,58.909 76.207,58.821 C76.168,58.821 76.131,58.809 76.085,58.809 L46.828,58.809 L37.745,58.809 L35.794,51.989 L96.453,42.583 L100,12.523 Z M90.212,36.565 L33.879,45.295 L26.476,19.425 L92.234,19.425 L90.212,36.565 Z"  fill="currentColor" fill-rule="nonzero"></path></g></svg></span>        <span class="rey-headerIcon-counter --bubble"><span class="__cart-count">0</span></span>
		<span class="screen-reader-text">Open cart</span>
	</button>
</div>
<!-- .rey-headerCart-wrapper -->
				</div>
				</div>
				<div class="elementor-element elementor-element-529e3f7b elementor-widget__width-auto elementor-widget elementor-widget-reycore-header-account" data-id="529e3f7b" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-account.default">
				<div class="elementor-widget-container">
					
<div class="rey-headerAccount rey-headerIcon ">
    <button class="btn rey-headerIcon-btn js-rey-headerAccount rey-headerAccount-btn rey-headerAccount-btn--before --hit-before">

		<span class="screen-reader-text">ACCOUNT</span>

		<span class="rey-headerAccount-btnText rey-headerIcon-btnText">ACCOUNT</span><span class="__icon rey-headerIcon-icon" aria-hidden="true"><svg aria-hidden="true" role="img" id="rey-icon-user-6a279896931dc" class="rey-icon rey-icon-user rey-headerAccount-btnIcon" viewbox="0 0 24 24"><path d="M8.68220488,13 L5.8,13 C4.7,11.6 4,9.9 4,8 C4,3.6 7.6,0 12,0 C16.4,0 20,3.6 20,8 C20,9.9 19.3,11.6 18.2,13 L15.3177951,13 C16.9344907,11.9250785 18,10.0869708 18,8 C18,4.6862915 15.3137085,2 12,2 C8.6862915,2 6,4.6862915 6,8 C6,10.0869708 7.06550934,11.9250785 8.68220488,13 Z"></path><path d="M18,14 L6,14 C2.7,14 0,16.7 0,20 L0,23 C0,23.6 0.4,24 1,24 L23,24 C23.6,24 24,23.6 24,23 L24,20 C24,16.7 21.3,14 18,14 Z M22,22 L2,22 L2,20 C2,17.8 3.8,16 6,16 L18,16 C20.2,16 22,17.8 22,20 L22,22 Z" ></path></svg></span>
<span class="rey-headerAccount-count rey-headerIcon-counter --hidden --minimal">

	<span class="rey-wishlistCounter-number" data-count=""></span><svg data-transparent="" data-abs="" aria-hidden="true" role="img" id="rey-icon-close-6a2798969382f" class="rey-icon rey-icon-close __close-icon" viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg>
</span>
    </button>

</div>
<!-- .rey-headerAccount-wrapper -->
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<div class="rey-overlay rey-overlay--header" style="opacity:0;"></div>
<div class="rey-overlay rey-overlay--header-top" style="opacity:0;"></div>

</header>
<!-- .rey-siteHeader -->

<div id="rey-siteHeader-helper" class="rey-siteHeader-helper "></div>
		<div id="content" class="rey-siteContent --tpl-elementor_header_footer">
		<div data-elementor-type="wp-page" data-elementor-id="4041" class="elementor elementor-4041" data-elementor-post-type="page">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-60c9fd8 rey-section-stretched e-flex e-con-boxed e-con e-parent" data-id="60c9fd8" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\/\/www.haircycle.com\/wp-content\/uploads\/sites\/4\/2024\/11\/promote-hair-growth_1.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}">
					<div class="e-con-inner">
		<div class="elementor-background-video-container">
							<video class="elementor-background-video-hosted" role="presentation" autoplay muted playsinline loop></video>
					</div>		<div class="elementor-element elementor-element-0fa4597 elementor-widget__width-inherit elementor-widget elementor-widget-heading" data-id="0fa4597" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;none&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Hair health starts<br>from within</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0ad6b0b elementor-widget elementor-widget-text-editor" data-id="0ad6b0b" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;none&quot;}" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>With HairCycle’s powerful blend of natural DHT inhibitors, antioxidants, and anagen stimulators, our products nourish your hair from the inside out, promoting healthy growth and preventing further loss.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-5b1ffc0 elementor-widget elementor-widget-eael-creative-button" data-id="5b1ffc0" data-element_type="widget" data-e-type="widget" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--wave eael-cb-icon-position-right" href="/shop/" data-text="Go!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">Enter Shop</span>

                                            <span class="eael-creative-button-icon-right"><svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></span>                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
				<div class="elementor-element elementor-element-0fded6e elementor-shape-circle elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="0fded6e" data-element_type="widget" data-e-type="widget" data-widget_type="social-icons.default">
				<div class="elementor-widget-container">
							<div class="elementor-social-icons-wrapper elementor-grid" role="list">
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-animation-shrink elementor-repeater-item-af959d0" target="_blank">
						<span class="elementor-screen-only">Facebook</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-animation-shrink elementor-repeater-item-dabf5af" target="_blank">
						<span class="elementor-screen-only">X-twitter</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-x-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-google-plus-g elementor-animation-shrink elementor-repeater-item-851e31e" target="_blank">
						<span class="elementor-screen-only">Google-plus-g</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-google-plus-g" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"></path></svg>					</a>
				</span>
					</div>
						</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-2f00f95 e-flex e-con-boxed e-con e-parent" data-id="2f00f95" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-be27ef6 elementor-widget elementor-widget-heading" data-id="be27ef6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Why Haircycle</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-1479c88 elementor-widget elementor-widget-text-editor" data-id="1479c88" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									Our line of <a href="https://www.haircycle.com/shop/">HairCycle products</a> includes an impressively effective and highly potent blend of DHT inhibitors, antioxidants, anti-inflammatories, cell proliferates, anagen stimulators, nitric oxide precursors, and androgen blockers. Formulated in 2004 by Dr. John Cole, a leader in the field of hair restoration and pioneer who established the FUE technique, has transformed the field of hair restoration.

HairCycle products not only stimulate hair growth but also prolong the anagen phase, ensuring proper water retention in hair follicles, which makes them appear thicker and healthier. Additionally, HairCycle offers supplements that slow down aging, promoting anti-aging benefits for hair and scalp health, and enhancing overall vitality.

Ideal for individuals undergoing hair transplant surgery, HairCycle accelerates the healing process, encourages healthier growth, prevents further hair loss, and strengthens the hair. The supplements work in synergy with the topical products, helping to slow down the aging process, promoting youthful, stronger hair and a healthier scalp.

Get HairCycle’s all-natural products and supplements now to stimulate hair growth, improve follicle thickness, slow down aging, and make your hair healthier and stronger.								</div>
				</div>
				<div class="elementor-element elementor-element-97f0666 elementor-widget elementor-widget-eael-creative-button" data-id="97f0666" data-element_type="widget" data-e-type="widget" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--wave eael-cb-icon-position-right" href="/shop/" data-text="Go!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">Shop Now</span>

                                            <span class="eael-creative-button-icon-right"><svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></span>                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-7612a2d e-con-full e-flex e-con e-parent" data-id="7612a2d" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-78233a4 e-flex e-con-boxed e-con e-child" data-id="78233a4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8aae75a elementor-widget elementor-widget-heading" data-id="8aae75a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Find your formula</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-983bc66 elementor-widget__width-initial elementor-widget elementor-widget-text-editor" data-id="983bc66" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We’ve gone to great lengths to bring you with a 100% all-natural products developed by physicians, ensuring that your hair will be healthier than it has ever been.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-ae3a3a8 elementor-widget elementor-widget-reycore-product-grid" data-id="ae3a3a8" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-product-grid.default">
				<div class="elementor-widget-container">
					
		<div class="woocommerce rey-element reyEl-productGrid reyEl-productGrid--has-thumbs  " data-qt="manual-selection">

		<ul class="products  rey-wcGrid-default --skin-proto" data-skin="--skin-proto" data-cols="3" data-cols-tablet="2" data-cols-mobile="1" data-discount-mobile-top="yes" data-params="[]" >
<li class="rey-swatches product type-product post-1310 status-publish first instock product_cat-hair-transplant-products has-post-thumbnail sale taxable shipping-taxable purchasable product-type-variable has-default-attributes is-animated rey-wc-skin--proto rey-wc-loopAlign-center" data-pid="1310">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/post-biotin-spray/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Post Biotin Spray"><img fetchpriority="high" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="after hair transplant biotin spray in a green bottle" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4.png 540w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 1"></a><div class="rey-thPos rey-thPos--top-left" data-position="top-left"><span class="rey-discount">-25% OFF</span></div></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-transplant-products/">Hair Transplant Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/post-biotin-spray/">Post Biotin Spray</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>15.75</bdi></span> <span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>79.75</bdi></span><span class="rey-discount">-25% OFF</span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/post-biotin-spray/" data-quantity="1" class="button product_type_variable add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 rey-btn--under" data-product_id="1310" data-product_sku="HC-BS" aria-label="Select options for &ldquo;Post Biotin Spray&rdquo;" rel="nofollow"><span class="__text">Select options</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_1310" class="screen-reader-text">
		This product has multiple variants. The options may be chosen on the product page	</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="1310" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3544 status-publish instock product_cat-hair-growth-products has-post-thumbnail taxable shipping-taxable purchasable product-type-variable has-default-attributes is-animated rey-wc-skin--proto rey-wc-loopAlign-center" data-pid="3544">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/help-hair-whey-protein/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Help Hair Whey Protein"><img decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="help hair whey protein chocolate flavor – for hair growth" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate.png 1350w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 2"></a><div class="rey-thPos rey-thPos--top-right" data-position="top-right"><div class="rey-itemBadge rey-stock-badge rey-soldout-badge" style="" data-status="outofstock" data-variation-id="4163">SOLD OUT</div></div></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-growth-products/">Hair Growth Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/help-hair-whey-protein/">Help Hair Whey Protein</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>59.95</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/help-hair-whey-protein/" data-quantity="1" class="button product_type_variable add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 rey-btn--under" data-product_id="3544" data-product_sku="" aria-label="Select options for &ldquo;Help Hair Whey Protein&rdquo;" rel="nofollow"><span class="__text">Select options</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3544" class="screen-reader-text">
		This product has multiple variants. The options may be chosen on the product page	</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3544" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-1322 status-publish last instock product_cat-hair-growth-products product_cat-hair-transplant-products has-post-thumbnail taxable shipping-taxable purchasable product-type-variable is-animated rey-wc-skin--proto rey-wc-loopAlign-center" data-pid="1322">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/haircycle-shampoo/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="HairCycle Shampoo for thinning hair"><img decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="best haircycle shampoo for thinning hair in a blue bottle" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3-200x200.png 200w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3.png 1215w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 3"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-growth-products/">Hair Growth Products</a><a href="https://www.haircycle.com/shop/hair-transplant-products/">Hair Transplant Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/haircycle-shampoo/">HairCycle Shampoo for thinning hair</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>14.99</bdi></span> <span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>24.99</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/haircycle-shampoo/" data-quantity="1" class="button product_type_variable add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 rey-btn--under" data-product_id="1322" data-product_sku="HC-SP" aria-label="Select options for &ldquo;HairCycle Shampoo for thinning hair&rdquo;" rel="nofollow"><span class="__text">Select options</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_1322" class="screen-reader-text">
		This product has multiple variants. The options may be chosen on the product page	</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="1322" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>

</ul></div>				</div>
				</div>
				<div class="elementor-element elementor-element-d416e18 elementor-widget elementor-widget-eael-creative-button" data-id="d416e18" data-element_type="widget" data-e-type="widget" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--wave eael-cb-icon-position-right" href="/shop/" data-text="Go!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">Enter Shop</span>

                                            <span class="eael-creative-button-icon-right"><svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></span>                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
					</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-de5648a e-con-full e-flex e-con e-parent" data-id="de5648a" data-element_type="container" data-e-type="container">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-d59c4b4 e-flex e-con-boxed e-con e-child" data-id="d59c4b4" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-76a6524 elementor-widget elementor-widget-heading" data-id="76a6524" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Comparison gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-01c9b37 elementor-widget__width-initial elementor-widget elementor-widget-text-editor" data-id="01c9b37" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We’ve gone to great lengths to bring you with a 100% all-natural products developed by physicians, ensuring that your hair will be healthier than it has ever been.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-11d1b05 elementor-pagination-position-inside elementor-arrows-position-inside elementor-widget elementor-widget-image-carousel" data-id="11d1b05" data-element_type="widget" data-e-type="widget" data-settings="{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500}" data-widget_type="image-carousel.default">
				<div class="elementor-widget-container">
							<div data-carousel-id="#carousel-6717764040b18" class="elementor-image-carousel-wrapper swiper" role="region" aria-roledescription="carousel" aria-label="Image Carousel" dir="ltr">
			<div class="elementor-image-carousel swiper-wrapper" aria-live="off">
								<div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="1 of 2"><figure class="swiper-slide-inner"><img class="swiper-slide-image swiper-lazy" data-src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/before-after-1.webp" alt="before-after-1" /><div class="swiper-lazy-preloader"></div></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="2 of 2"><figure class="swiper-slide-inner"><img class="swiper-slide-image swiper-lazy" data-src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/before-after-2.webp" alt="before-after-2" /><div class="swiper-lazy-preloader"></div></figure></div>			</div>
												<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
						<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-left" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					</div>
					<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
						<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-right" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					</div>
				
									<div class="swiper-pagination"></div>
									</div>
						</div>
				</div>
					</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-e4dab86 e-con-full e-flex e-con e-parent" data-id="e4dab86" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-5e909f3 e-flex e-con-boxed e-con e-child" data-id="5e909f3" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d87da2c elementor-widget elementor-widget-heading" data-id="d87da2c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Trusted by thousands of patients</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-2572314 elementor-widget__width-initial elementor-widget elementor-widget-text-editor" data-id="2572314" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We’ve gone to great lengths to bring you with a 100% all-natural products developed by physicians, ensuring that your hair will be healthier than it has ever been.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-793cbf0 home-testimonial-block elementor-widget elementor-widget-eael-testimonial-slider" data-id="793cbf0" data-element_type="widget" data-e-type="widget" data-settings="{&quot;items&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:3,&quot;sizes&quot;:[]},&quot;items_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:2,&quot;sizes&quot;:[]},&quot;items_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;slide_items&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;slide_items_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;slide_items_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]}}" data-widget_type="eael-testimonial-slider.default">
				<div class="elementor-widget-container">
					
        <div class="swiper-container-wrap swiper-container-wrap-dots-outside eael-testimonial-slider content-bottom-icon-title-inline" id="eael-testimonial-793cbf0">
			            <div class="swiper swiper-8 eael-testimonial-slider-main swiper-container-793cbf0" data-pagination=".swiper-pagination-793cbf0" data-arrow-next=".swiper-button-next-793cbf0" data-arrow-prev=".swiper-button-prev-793cbf0" data-items="3" data-items-tablet="2" data-items-mobile="1" data-slide-items="1" data-slide-items-tablet="1" data-slide-items-mobile="1" data-margin="32" data-margin-tablet="32" data-effect="slide" data-speed="1000" data-dots="1" data-autoplay_speed="2000">

                <div class="swiper-wrapper">
												<div class="eael-testimonial-item clearfix swiper-slide testimonial-avatar-rounded eael-testimonial-align-default">
								<div class="eael-testimonial-item-inner clearfix">
									<div class="eael-testimonial-content rating-five" style="">
										<div class="testimonial-inline-style">
											        <div class="eael-testimonial-image">
			            <figure>
                <img decoding="async" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/03/male-doctor-talking.jpg" alt="professional doctor" title="Homepage 4">
            </figure>
        </div>
		        <p class="eael-testimonial-user"  style="display: block; float: none;" >Jessica A</p>
        <p class="eael-testimonial-user-company">HairCycle Hair Treatments</p>
		        <ul class="testimonial-star-rating">
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
        </ul>
												</div>
										<span class="eael-testimonial-quote"></span><div class="eael-testimonial-text "><p>I used haircycle shampoo and conditioner for the first time this morning. After just one use, my scalp is so much healthier! It is usually dry, and I have tried everything to help from cheap grocery store shampoos to prescriptions to expensive salon brands. This is the only thing that helps. The quality is good for my hair as well. My hair is healthy-looking and easy to style. The conditioner is light and doesn’t weigh my hair down. I am very happy with Hair Cycle. It is my brand from now on, and I am giving some to my mother and grandmother as well.</p></div>									</div>
								</div>
							</div>
														<div class="eael-testimonial-item clearfix swiper-slide testimonial-avatar-rounded eael-testimonial-align-default">
								<div class="eael-testimonial-item-inner clearfix">
									<div class="eael-testimonial-content rating-five" style="">
										<div class="testimonial-inline-style">
											        <div class="eael-testimonial-image">
			            <figure>
                <img decoding="async" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/images/placeholder.png" alt="placeholder" title="Homepage 5">
            </figure>
        </div>
		        <p class="eael-testimonial-user"  style="display: block; float: none;" >Ron</p>
        <p class="eael-testimonial-user-company">Hair Cycle Post-Surgery</p>
		        <ul class="testimonial-star-rating">
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
        </ul>
												</div>
										<span class="eael-testimonial-quote"></span><div class="eael-testimonial-text "><p>My healing compared to my last 2 sessions is incredible! After hearing so many success stories about the "Hair Cycle post surgery products" from patients i decided to test it and the results are excellent. In my previous sessions i had redness in the receipting area for about 1.5 months and also in the donor...this time after 1 week of using the post surgical gel for my donor and the Biotin spray for the recipient area the scalp is clean like a mirror and my grafts didn't shed at all!</p></div>									</div>
								</div>
							</div>
														<div class="eael-testimonial-item clearfix swiper-slide testimonial-avatar-rounded eael-testimonial-align-default">
								<div class="eael-testimonial-item-inner clearfix">
									<div class="eael-testimonial-content rating-five" style="">
										<div class="testimonial-inline-style">
											        <div class="eael-testimonial-image">
			            <figure>
                <img decoding="async" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/images/placeholder.png" alt="placeholder" title="Homepage 5">
            </figure>
        </div>
		        <p class="eael-testimonial-user"  style="display: block; float: none;" >Daren</p>
        <p class="eael-testimonial-user-company">HairCycle Post-surgery</p>
		        <ul class="testimonial-star-rating">
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
            <li><i class="fa fa-star" aria-hidden="true"></i></li>
        </ul>
												</div>
										<span class="eael-testimonial-quote"></span><div class="eael-testimonial-text "><p>Just wanted to let you know how good your Haircycle products really are. After my hair transplant I used the biotin spray and in one week all my scabs and redness were gone. I have been having hair transplants on and off for the past 20 years and never had results like this, just fantastic. I am also using the shampoo and conditioner with great results, as my hair is fuller thicker and healthier looking.</p></div>									</div>
								</div>
							</div>
							                </div>
				            <!-- Add Pagination -->
            <div class="swiper-pagination swiper-pagination-793cbf0"></div>
		            </div>
			        </div>

						</div>
				</div>
					</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-bc9f192 rey-section-stretched e-flex e-con-boxed e-con e-parent" data-id="bc9f192" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-695946d e-con-full e-flex e-con e-child" data-id="695946d" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-cc8109b e-con-full e-flex e-con e-child" data-id="cc8109b" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-7cb1e79 elementor-widget elementor-widget-heading" data-id="7cb1e79" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">What are the Benefits of HairCycle?</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-8edab27 elementor-widget elementor-widget-text-editor" data-id="8edab27" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>HairCycle is an exclusive line of hair and scalp care products that gently cleanse your hair while promoting hair growth and retention. We derive our products from completely natural and safe ingredients. HairCycle emphasizes your hair’s health first. All your scalp’s natural oils will remain, leaving your hair healthier, fuller, and far more manageable.</p>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-79606f5 e-con-full e-flex e-con e-child" data-id="79606f5" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-b254e3a elementor-widget elementor-widget-reycore-hoverbox-distortion" data-id="b254e3a" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-hoverbox-distortion.default">
				<div class="elementor-widget-container">
					<div class="rey-hoverBox " data-state="two" data-css-tr="scale-in">
		<div class="__images">

			<img loading="lazy" decoding="async" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/hiarcycle-men-hair-1.webp" width="585" height="585" class="__img __img-active" alt="hiarcycle-men-hair" title="Homepage 7"><img loading="lazy" decoding="async" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/hiarcycle-women-hair-1.webp" width="585" height="585" class="__img __img-hover" alt="hiarcycle-men-hair" title="Homepage 8">		</div>

		<div class="__imagesBg"></div>
		
		<div class="__text">

			<p class="__text1 __hoverItem captions--show "> Invest in your hair, it is the crown you never take off </p><p class="__text2 __hoverItem captions--show ">― Tyler Buckle</p>
		</div>
		</div>				</div>
				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-fe5485c e-flex e-con-boxed e-con e-child" data-id="fe5485c" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-d63c992 e-con-full e-flex e-con e-child" data-id="d63c992" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-dbb77b8 elementor-widget elementor-widget-price-table" data-id="dbb77b8" data-element_type="widget" data-e-type="widget" data-widget_type="price-table.default">
				<div class="elementor-widget-container">
					
		<div class="elementor-price-table">
							<div class="elementor-price-table__header">
											<h3 class="elementor-price-table__heading">
						Hair Loss Treatments						</h3>
					
											<span class="elementor-price-table__subheading">
							Stimulates Hair Growth / For Men &amp; Women						</span>
									</div>
			
			<div class="elementor-price-table__price">
												
				
				
							</div>

							<ul class="elementor-price-table__features-list">
											<li class="elementor-repeater-item-5c5e499">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										For men and women with hair loss									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-560118b">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										All-natural, alcohol-free									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-eec0410">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Contains Anagen stimulators &amp; DHT inhibitors									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-abd9fba">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Includes anti-inflammatories &amp; antioxidants									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-1ed058a">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Promotes cell growth &amp; hair strength									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-c1c4f3b">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Enhances hair softness &amp; manageability									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-b4097d1">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Improves hair thickness									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-cee0a65">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Lightweight, with B5 for healthy hair									</span>
																</div>
						</li>
									</ul>
			
							<div class="elementor-price-table__footer">
											<a class="elementor-price-table__button elementor-button elementor-size-sm" href="/shop/hair-growth-products/">
							Choose						</a>
					
											<div class="elementor-price-table__additional_info">
							Hair Growth Products						</div>
									</div>
					</div>

						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-4ce0d8c e-con-full e-flex e-con e-child" data-id="4ce0d8c" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-89f575f elementor-widget elementor-widget-price-table" data-id="89f575f" data-element_type="widget" data-e-type="widget" data-widget_type="price-table.default">
				<div class="elementor-widget-container">
					
		<div class="elementor-price-table">
							<div class="elementor-price-table__header">
											<h3 class="elementor-price-table__heading">
						Hair Restoration Care						</h3>
					
											<span class="elementor-price-table__subheading">
							Best Post-op Treatment / For Men &amp; Women						</span>
									</div>
			
			<div class="elementor-price-table__price">
												
				
				
							</div>

							<ul class="elementor-price-table__features-list">
											<li class="elementor-repeater-item-5c5e499">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Suitable for men and women									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-83f9ba5">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										All-natural, alcohol-free									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-2fa500d">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Physician-formulated									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-1483e9a">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Cleans and maintains post-surgical scalp									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-3d2f9b6">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Promotes donor area healing									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-49e09c6">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Stimulates circulation and hair growth									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-de41160">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Reduces redness and scarring									</span>
																</div>
						</li>
											<li class="elementor-repeater-item-bb87949">
							<div class="elementor-price-table__feature-inner">
								<svg aria-hidden="true" class="e-font-icon-svg e-far-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z"></path></svg>																	<span >
										Minimizes scabs and speeds healing									</span>
																</div>
						</li>
									</ul>
			
							<div class="elementor-price-table__footer">
											<a class="elementor-price-table__button elementor-button elementor-size-sm" href="/shop/hair-transplant-products/">
							Choose						</a>
					
											<div class="elementor-price-table__additional_info">
							Hair Transplant Products						</div>
									</div>
					</div>

						</div>
				</div>
				</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-2f0e14f e-con-full e-flex e-con e-parent" data-id="2f0e14f" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f7c5521 e-flex e-con-boxed e-con e-child" data-id="f7c5521" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-8e3e40a e-con-full e-flex e-con e-child" data-id="8e3e40a" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-db0f434 elementor-widget elementor-widget-heading" data-id="db0f434" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Haircycle Collection</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-9495978 elementor-widget elementor-widget-text-editor" data-id="9495978" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We’ve gone to great lengths to bring you with a 100% all-natural products developed by physicians, ensuring that your hair will be healthier than it has ever been.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-8a8c198 elementor-widget elementor-widget-eael-creative-button" data-id="8a8c198" data-element_type="widget" data-e-type="widget" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--wave eael-cb-icon-position-right" href="/shop/" data-text="Go!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">Discover More</span>

                                            <span class="eael-creative-button-icon-right"><svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></span>                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-c5391fb e-con-full e-flex e-con e-child" data-id="c5391fb" data-element_type="container" data-e-type="container">
				<div class="pg-skin-proto elementor-element elementor-element-b38bc3f --carousel-navPos-inside --show-on-hover-yes elementor-widget elementor-widget-reycore-product-grid" data-id="b38bc3f" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-product-grid.carousel">
				<div class="elementor-widget-container">
					
		<div class="woocommerce rey-element reyEl-productGrid reyEl-productGrid--has-thumbs reyEl-productGrid--skin-carousel " data-carousel-settings="{&quot;type&quot;:&quot;slide&quot;,&quot;slides_to_show&quot;:3,&quot;slides_to_show_tablet&quot;:2,&quot;slides_to_show_mobile&quot;:1,&quot;slides_to_move&quot;:1,&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;infinite&quot;:false,&quot;infinite_tablet&quot;:false,&quot;infinite_mobile&quot;:false,&quot;speed&quot;:500,&quot;direction&quot;:&quot;ltr&quot;,&quot;carousel_padding&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;top&quot;:&quot;&quot;,&quot;right&quot;:&quot;&quot;,&quot;bottom&quot;:&quot;&quot;,&quot;left&quot;:&quot;&quot;,&quot;isLinked&quot;:true},&quot;carousel_padding_tablet&quot;:[],&quot;carousel_padding_mobile&quot;:[],&quot;delayInit&quot;:1000,&quot;customArrows&quot;:&quot;.__arrows-b38bc3f&quot;,&quot;free_drag&quot;:[],&quot;side_offset&quot;:&quot;&quot;}" data-qt="best-selling">

		<div class="splide reyEl-productGrid-splide carousel-5cdd4f7b7d82b" data-skin="proto"><div class="splide__track"><ul class="products --prevent-thumbnail-sliders --prevent-scattered --prevent-masonry splide__list rey-wcGap-extended rey-wcGrid-default --skin-proto" data-slider-carousel-id="carousel-5cdd4f7b7d82b" data-discount-mobile-top="yes" data-params="[]" >
<li class="rey-swatches product type-product post-1316 status-publish first instock product_cat-hair-transplant-products has-post-thumbnail taxable shipping-taxable purchasable product-type-variable is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="1316">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/haircycle-basic-kit/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="HairCycle Basic Kit"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="haircycle basic kit – complete hair care kit for hair health and recovery" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit-200x200.png 200w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 9"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-transplant-products/">Hair Transplant Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/haircycle-basic-kit/">HairCycle Basic Kit</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>25.00</bdi></span> <span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>44.98</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/haircycle-basic-kit/" data-quantity="1" class="button product_type_variable add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 rey-btn--under" data-product_id="1316" data-product_sku="HC-BK" aria-label="Select options for &ldquo;HairCycle Basic Kit&rdquo;" rel="nofollow"><span class="__text">Select options</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_1316" class="screen-reader-text">
		This product has multiple variants. The options may be chosen on the product page	</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="1316" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-1327 status-publish instock product_cat-hair-growth-products product_cat-hair-transplant-products has-post-thumbnail taxable shipping-taxable purchasable product-type-variable is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="1327">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/haircycle-conditioner/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="HairCycle Hair Loss Conditioner"><img loading="lazy" decoding="async" width="221" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/nc/images/stories/virtuemart/product/haircycle-conditioner-trademark-dr-cole.jpg" class="rey-productThumbnail__second" alt="hair cycle conditioner" title="Homepage 10"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="haircycle hair loss conditioner – nourishes and strengthens hair" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1-200x200.png 200w, https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1.png 1215w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 11"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-growth-products/">Hair Growth Products</a><a href="https://www.haircycle.com/shop/hair-transplant-products/">Hair Transplant Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/haircycle-conditioner/">HairCycle Hair Loss Conditioner</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>14.99</bdi></span> <span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>24.99</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/haircycle-conditioner/" data-quantity="1" class="button product_type_variable add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 rey-btn--under" data-product_id="1327" data-product_sku="HC-CN" aria-label="Select options for &ldquo;HairCycle Hair Loss Conditioner&rdquo;" rel="nofollow"><span class="__text">Select options</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_1327" class="screen-reader-text">
		This product has multiple variants. The options may be chosen on the product page	</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="1327" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3517 status-publish last instock product_cat-hair-body-supplements has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="3517">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/nitric-oxiden-n-o/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Nitric Oxide Premium Supplement 60 Caps"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="nitrate based nitric oxide supplement" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 12"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-body-supplements/">Hair &amp; Body Supplements</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/nitric-oxiden-n-o/">Nitric Oxide Premium Supplement 60 Caps</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>49.95</bdi></span></span>		<div class="rey-loopButtons">
		<a href="/?option=com_obrss&#038;task=feed&#038;id=1&#038;add-to-cart=3517" data-quantity="1" class="button product_type_simple add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 ajax_add_to_cart rey-btn--under" data-product_id="3517" data-product_sku="" aria-label="Add to cart: &ldquo;Nitric Oxide Premium Supplement 60 Caps&rdquo;" rel="nofollow" data-success_message="&ldquo;Nitric Oxide Premium Supplement 60 Caps&rdquo; has been added to your cart" role="button"><span class="__text">Add to cart</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3517" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3517" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3542 status-publish first outofstock product_cat-hair-body-supplements has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="3542">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Neuro Performance Plasmalogens"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="prodromeneuro performance plasmalogens – supports cognitive and nerve health" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 13"></a><div class="rey-thPos rey-thPos--top-right" data-position="top-right"><div class="rey-itemBadge rey-stock-badge rey-soldout-badge" style="" data-status="outofstock">SOLD OUT</div></div></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-body-supplements/">Hair &amp; Body Supplements</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/">Neuro Performance Plasmalogens</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>149.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/" data-quantity="1" class="button product_type_simple rey-btn--under" data-product_id="3542" data-product_sku="" aria-label="Read more about &ldquo;Neuro Performance Plasmalogens&rdquo;" rel="nofollow" data-success_message=""><span class="__text">Read more</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3542" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3542" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-1306 status-publish instock product_cat-hair-growth-products has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="1306">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/haircycle-texture-gel/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="HairCycle Texture Gel"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="haircycle texture gel – lightweight styling gel for hair volume and definition" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 14"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-growth-products/">Hair Growth Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/haircycle-texture-gel/">HairCycle Texture Gel</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>8.99</bdi></span></span>		<div class="rey-loopButtons">
		<a href="/?option=com_obrss&#038;task=feed&#038;id=1&#038;add-to-cart=1306" data-quantity="1" class="button product_type_simple add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 ajax_add_to_cart rey-btn--under" data-product_id="1306" data-product_sku="HC-TG" aria-label="Add to cart: &ldquo;HairCycle Texture Gel&rdquo;" rel="nofollow" data-success_message="&ldquo;HairCycle Texture Gel&rdquo; has been added to your cart" role="button"><span class="__text">Add to cart</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_1306" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="1306" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-5435 status-publish last outofstock product_cat-hair-body-supplements has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="5435">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/prodromeglia-softgels/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="ProdromeGlia (Softgels)"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-300x300.webp" class="rey-productThumbnail__second" alt="prodromeglia™ omega-9 plasmalogen oil – enhances cognitive function and brain health" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-300x300.webp 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-1024x1024.webp 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-150x150.webp 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-768x768.webp 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-1536x1536.webp 1536w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-400x400.webp 400w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-600x600.webp 600w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-800x800.webp 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4-100x100.webp 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/Glia_60_dv_ea1092b1-020a-40d6-af69-d8eb17cea6c4.webp 1946w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 15"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="prodromeglia™ omega-9 plasmalogen oil – supports brain and nervous system health" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-400x400.png 400w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-600x600.png 600w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome.png 1485w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 16"></a><div class="rey-thPos rey-thPos--top-right" data-position="top-right"><div class="rey-itemBadge rey-stock-badge rey-soldout-badge" style="" data-status="outofstock">SOLD OUT</div></div></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-body-supplements/">Hair &amp; Body Supplements</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/prodromeglia-softgels/">ProdromeGlia (Softgels)</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>74.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/prodromeglia-softgels/" data-quantity="1" class="button product_type_simple rey-btn--under" data-product_id="5435" data-product_sku="" aria-label="Read more about &ldquo;ProdromeGlia (Softgels)&rdquo;" rel="nofollow" data-success_message=""><span class="__text">Read more</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_5435" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="5435" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3529 status-publish first outofstock product_cat-hair-body-supplements has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="3529">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/melatonin-60mg-dfs/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Melatonin 60mg (DFS)"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT-300x300.webp" class="rey-productThumbnail__second" alt="back view of a bottle of melatonin 60mg (nu-scripts) showing the supplement facts label, ingredients, and manufacturing details." srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT-300x300.webp 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT-150x150.webp 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT-768x768.webp 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT-800x800.webp 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT-100x100.webp 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-RIGHT.webp 960w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 17"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-FRONT_1500x1500-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="bottle of melatonin 60mg (nu-scripts) with 60 capsules, designed to support restful sleep and regulate circadian rhythms." srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-FRONT_1500x1500-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-FRONT_1500x1500-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-FRONT_1500x1500-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-FRONT_1500x1500.png 500w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 18"></a><div class="rey-thPos rey-thPos--top-right" data-position="top-right"><div class="rey-itemBadge rey-stock-badge rey-soldout-badge" style="" data-status="outofstock">SOLD OUT</div></div></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-body-supplements/">Hair &amp; Body Supplements</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/melatonin-60mg-dfs/">Melatonin 60mg (DFS)</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>34.99</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/melatonin-60mg-dfs/" data-quantity="1" class="button product_type_simple rey-btn--under" data-product_id="3529" data-product_sku="" aria-label="Read more about &ldquo;Melatonin 60mg (DFS)&rdquo;" rel="nofollow" data-success_message=""><span class="__text">Read more</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3529" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3529" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-1314 status-publish instock product_cat-hair-transplant-products has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="1314">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/haircycle-post-surgical-gel/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="HairCycle Post Surgical Gel"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="post surgical hair transplant gel bottle" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 19"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-transplant-products/">Hair Transplant Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/haircycle-post-surgical-gel/">HairCycle Post Surgical Gel</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>35.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="/?option=com_obrss&#038;task=feed&#038;id=1&#038;add-to-cart=1314" data-quantity="1" class="button product_type_simple add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 ajax_add_to_cart rey-btn--under" data-product_id="1314" data-product_sku="HC-SG" aria-label="Add to cart: &ldquo;HairCycle Post Surgical Gel&rdquo;" rel="nofollow" data-success_message="&ldquo;HairCycle Post Surgical Gel&rdquo; has been added to your cart" role="button"><span class="__text">Add to cart</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_1314" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="1314" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3650 status-publish last instock product_cat-hair-growth-products has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="3650">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/elevai-enfinity-serum/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="ELEVAI Enfinity Serum"><img loading="lazy" decoding="async" width="240" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/enfinity-240x300.jpeg" class="rey-productThumbnail__second" alt="enfinity" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/enfinity-240x300.jpeg 240w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/enfinity-819x1024.jpeg 819w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/enfinity-768x960.jpeg 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/enfinity-800x1000.jpeg 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/enfinity.jpeg 1024w" sizes="(max-width: 240px) 100vw, 240px" title="Homepage 20"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-300x300.jpg" class="rey-thumbImg img--1 attachment-medium size-medium" alt="best anti aging serum" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-300x300.jpg 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-1024x1024.jpg 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-150x150.jpg 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-768x768.jpg 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-800x800.jpg 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1-100x100.jpg 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1.jpg 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 21"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-growth-products/">Hair Growth Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/elevai-enfinity-serum/">ELEVAI Enfinity Serum</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>299.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="/?option=com_obrss&#038;task=feed&#038;id=1&#038;add-to-cart=3650" data-quantity="1" class="button product_type_simple add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 ajax_add_to_cart rey-btn--under" data-product_id="3650" data-product_sku="" aria-label="Add to cart: &ldquo;ELEVAI Enfinity Serum&rdquo;" rel="nofollow" data-success_message="&ldquo;ELEVAI Enfinity Serum&rdquo; has been added to your cart" role="button"><span class="__text">Add to cart</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3650" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3650" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3536 status-publish first instock product_cat-hair-body-supplements has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="3536">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/dim-sgs/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Dim SGS+"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="biote dim sgs+ supplement – supports hormonal balance and detoxification" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS--100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS-.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 22"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-body-supplements/">Hair &amp; Body Supplements</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/dim-sgs/">Dim SGS+</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>47.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="/?option=com_obrss&#038;task=feed&#038;id=1&#038;add-to-cart=3536" data-quantity="1" class="button product_type_simple add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 ajax_add_to_cart rey-btn--under" data-product_id="3536" data-product_sku="" aria-label="Add to cart: &ldquo;Dim SGS+&rdquo;" rel="nofollow" data-success_message="&ldquo;Dim SGS+&rdquo; has been added to your cart" role="button"><span class="__text">Add to cart</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3536" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3536" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-4975 status-publish outofstock product_cat-hair-growth-products has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="4975">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/surethik-fiber-holding-spray/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="SureThik Fiber Holding Spray"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-300x300.webp" class="rey-productThumbnail__second" alt="surethik fiber holding spray – keeps hair fibers secure and natural-looking" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-300x300.webp 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-1024x1024.webp 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-150x150.webp 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-768x768.webp 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-1536x1536.webp 1536w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-2048x2048.webp 2048w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-800x800.webp 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/23_b19c76e3-345c-496a-b57e-608d4c3fa944-100x100.webp 100w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 23"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-300x300.webp" class="rey-thumbImg img--1 attachment-medium size-medium" alt="surethik® fiber holding spray – secures hair fibers for a natural look" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-300x300.webp 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-1024x1024.webp 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-150x150.webp 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-768x768.webp 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-1536x1536.webp 1536w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-2048x2048.webp 2048w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-800x800.webp 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER-100x100.webp 100w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 24"></a><div class="rey-thPos rey-thPos--top-right" data-position="top-right"><div class="rey-itemBadge rey-stock-badge rey-soldout-badge" style="" data-status="outofstock">SOLD OUT</div></div></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-growth-products/">Hair Growth Products</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/surethik-fiber-holding-spray/">SureThik Fiber Holding Spray</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>12.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="https://www.haircycle.com/product/surethik-fiber-holding-spray/" data-quantity="1" class="button product_type_simple rey-btn--under" data-product_id="4975" data-product_sku="" aria-label="Read more about &ldquo;SureThik Fiber Holding Spray&rdquo;" rel="nofollow" data-success_message=""><span class="__text">Read more</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_4975" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="4975" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>


<li class="rey-swatches product type-product post-3535 status-publish last instock product_cat-hair-body-supplements has-post-thumbnail taxable shipping-taxable purchasable product-type-simple is-animated --extraImg-second --extraImg-mobile rey-wc-skin--proto rey-wc-loopAlign-center splide__slide" data-pid="3535">

	<div class="rey-protoShadowHolder"></div><div class="rey-productInner --box-styler"><div class="rey-productThumbnail"><a href="https://www.haircycle.com/product/methyl-factors/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link" aria-label="Methyl Factors"><img loading="lazy" decoding="async" width="300" height="300" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-300x300.png" class="rey-thumbImg img--1 attachment-medium size-medium" alt="methyl factors supplement – supports methylation and cellular health" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-300x300.png 300w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-1024x1024.png 1024w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-150x150.png 150w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-768x768.png 768w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-800x800.png 800w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors-100x100.png 100w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors.png 1080w" sizes="(max-width: 300px) 100vw, 300px" title="Homepage 25"></a></div>		<div class="rey-loopDetails ">
		<div class="rey-productCategories elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571"><a href="https://www.haircycle.com/shop/hair-body-supplements/">Hair &amp; Body Supplements</a></div><h2 class="woocommerce-loop-product__title elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67"><a href="https://www.haircycle.com/product/methyl-factors/">Methyl Factors</a></h2><div class="__break"></div><span class="price rey-loopPrice elementor-repeater-item-feaff7f"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">&#36;</span>45.00</bdi></span></span>		<div class="rey-loopButtons">
		<a href="/?option=com_obrss&#038;task=feed&#038;id=1&#038;add-to-cart=3535" data-quantity="1" class="button product_type_simple add_to_cart_button elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 ajax_add_to_cart rey-btn--under" data-product_id="3535" data-product_sku="" aria-label="Add to cart: &ldquo;Methyl Factors&rdquo;" rel="nofollow" data-success_message="&ldquo;Methyl Factors&rdquo; has been added to your cart" role="button"><span class="__text">Add to cart</span></a>	<span id="woocommerce_loop_add_to_cart_link_describedby_3535" class="screen-reader-text">
			</span>
<button class=" rey-wishlistBtn rey-wishlistBtn-link elementor-repeater-item-feaff7f elementor-repeater-item-eea2d67 elementor-repeater-item-fd8bc88 elementor-repeater-item-2b71571 elementor-repeater-item-1089d41 elementor-repeater-item-49fda27" data-lazy-hidden data-id="3535" title="Add to wishlist" aria-label="Add to wishlist" ><svg aria-hidden="true" role="img" class="rey-icon rey-icon-heart rey-wishlistBtn-icon" viewbox="0 0 24 24"><path fill="var(--icon-fill, none)" stroke="currentColor" stroke-width="var(--stroke-width, 1.8px)" stroke-linecap="round" stroke-linejoin="round" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg></button>		</div>
			</div>
			</div>
	
</li>

</ul></div><div class="reyEl-productGrid-carouselNav __arrows-b38bc3f"><div class="rey-arrowSvg rey-arrowSvg--left " data-dir="<"><svg aria-hidden="true" role="img" id="rey-icon-chevron-6a279897288d8" class="rey-icon rey-icon-chevron  " viewbox="0 0 40 64"><polygon fill="currentColor" points="39.5 32 6.83 64 0.5 57.38 26.76 32 0.5 6.62 6.83 0"></polygon></svg></div><div class="rey-arrowSvg rey-arrowSvg--right " data-dir=">"><svg aria-hidden="true" role="img" id="rey-icon-chevron-6a2798972890a" class="rey-icon rey-icon-chevron  " viewbox="0 0 40 64"><polygon fill="currentColor" points="39.5 32 6.83 64 0.5 57.38 26.76 32 0.5 6.62 6.83 0"></polygon></svg></div></div></div></div>				</div>
				</div>
				</div>
					</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-b80381d rey-section-stretched e-flex e-con-boxed e-con e-parent" data-id="b80381d" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-c06e1bb e-con-full e-flex e-con e-child" data-id="c06e1bb" data-element_type="container" data-e-type="container">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-db7d6d4 e-con-full e-flex e-con e-child" data-id="db7d6d4" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-f5fb9a6 elementor-widget elementor-widget-heading" data-id="f5fb9a6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">HairCycle Q&amp;A</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-80f4c11 elementor-widget elementor-widget-text-editor" data-id="80f4c11" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Do you have questions about the HairCycle Products? We have listed some common Q&amp;A in this section that we received from our customers. If you have questions or concerns about our products, you can use the contact form on our contact page to send your inquiry.</p><p>Do you have more questions? check our Frequently Asked Questions section for more answers.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-c783de3 elementor-widget elementor-widget-eael-creative-button" data-id="c783de3" data-element_type="widget" data-e-type="widget" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--wave eael-cb-icon-position-right" href="https://www.haircycle.com/frequently-asked-questions/" data-text="Go!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">HairCycle F.A.Q's Page</span>

                                            <span class="eael-creative-button-icon-right"><svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></span>                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-c5501ab e-con-full e-flex e-con e-child" data-id="c5501ab" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-accd1c7 faq-section elementor-widget elementor-widget-toggle" data-id="accd1c7" data-element_type="widget" data-e-type="widget" data-widget_type="toggle.default">
				<div class="elementor-widget-container">
							<div class="elementor-toggle">
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1811" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-1811" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">What makes HairCycle Shampoo stand out from standard shampoos?</a>
					</h3>

					<div id="elementor-tab-content-1811" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-1811"><p>The gentle cleansing formula of HairCycle Shampoo avoids harsh chemicals such as sodium lauryl sulfate which removes natural oils from hair. The product contains natural ingredients including biotin and tea tree oil and grapefruit seed extract which work together to promote scalp health and minimize buildup while enhancing hair appearance without harming its natural shine or volume.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1812" class="elementor-tab-title" data-tab="2" role="button" aria-controls="elementor-tab-content-1812" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">What is the  HairCycle expiration date?</a>
					</h3>

					<div id="elementor-tab-content-1812" class="elementor-tab-content elementor-clearfix" data-tab="2" role="region" aria-labelledby="elementor-tab-title-1812"><p>will remain effective and safe for two years when stored in normal room temperture throughout that period. The product lifespan becomes shorter when you store it in extreme cold or heat conditions. You should purchase a fresh bottle since your current bottle has reached its two-year mark. You should purchase the travel size bottle because you used half of your previous bottle. The biotin spray requires only a light mist application. You should avoid saturating your scalp with product until it starts dripping down your forehead. The application method you described is too heavy for the product.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1813" class="elementor-tab-title" data-tab="3" role="button" aria-controls="elementor-tab-content-1813" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Are the HairCycle products safe?</a>
					</h3>

					<div id="elementor-tab-content-1813" class="elementor-tab-content elementor-clearfix" data-tab="3" role="region" aria-labelledby="elementor-tab-title-1813"><p>HairCycle products are made with natural ingredients and are generally safe—unless you’re allergic to something specific. They’re designed to support longer, healthier hair by promoting a better growth phase, though they don’t treat male pattern baldness. Overall, they’re much gentler on your scalp than most chemical-based shampoos.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1814" class="elementor-tab-title" data-tab="4" role="button" aria-controls="elementor-tab-content-1814" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">What happens if I stop using HairCycle products?</a>
					</h3>

					<div id="elementor-tab-content-1814" class="elementor-tab-content elementor-clearfix" data-tab="4" role="region" aria-labelledby="elementor-tab-title-1814"><p>If you stop using HairCycle, your hair won’t fall out—but the growth phase (anagen) may shorten. That means hair could shed sooner over time. HairCycle helps extend how long each hair grows before resting, so staying on it may help keep your hair healthier and fuller for longer.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1815" class="elementor-tab-title" data-tab="5" role="button" aria-controls="elementor-tab-content-1815" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Can HairCycle cause shedding or hair thinning</a>
					</h3>

					<div id="elementor-tab-content-1815" class="elementor-tab-content elementor-clearfix" data-tab="5" role="region" aria-labelledby="elementor-tab-title-1815"><p>Not really—but it can look that way at first. HairCycle may push out old resting hairs as it stimulates new growth, which can seem like shedding. This is actually a good sign—it means the product is encouraging new hairs to enter the growth phase (anagen). It’s also possible your hair loss is simply progressing naturally and just happens to coincide with starting the shampoo. HairCycle doesn’t cause hair loss—it helps extend the life of existing hair. Keep using it consistently for best results.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1816" class="elementor-tab-title" data-tab="6" role="button" aria-controls="elementor-tab-content-1816" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Can HairCycle slow or stop hair loss?</a>
					</h3>

					<div id="elementor-tab-content-1816" class="elementor-tab-content elementor-clearfix" data-tab="6" role="region" aria-labelledby="elementor-tab-title-1816"><blockquote><p>can you tell me if your products slow or stop hair loss&#8230; i&#8217;m only interested in the products to help slow hair loss and not to have a transplant&#8230; have you had success with it slowing or halting hair loss or shedding?</p></blockquote><p>Everyone loses hair. In fact, losing around 100 hairs a day is a natural part of the hair growth cycle. But at some point, most people experience excessive hair loss. Whether it&#8217;s triggered by hormonal imbalance, stress, medication, exposure to chemicals, nutritional deficiency, thyroid or skin disease, or even childbirth or birth control pills, loss occurs. In most cases, it is a temporary situation, but sometimes can be permanent. Male pattern baldness or androgenic alopecia is the most common form of hair loss in men, and both are permanent. Fortunately, medications and hair care products can be used to manage hair loss.</p><p>Hair Cycle hair care products fight hair loss at its root and stimulate anagen and retards hair loss by extending the duration of anagen. The secret is a unique combination of all-natural ingredients that block androgen receptors, ease inflammation, decrease the formation of DHTs and free radicals, and encourage the growth of nitro oxidants and hair follicle cells.</p><p>Many of the chemicals found in traditional hair care products contain substances that can be harmful to the skin and scalp. The most frequent causes of stress to the scalp are improper hair styling, staining, and hair care ingredients, and insufficient rinsing after shampooing or rinsing with highly chlorinated or contaminated water. In fact, remaining detergents are often the leading cause of scalp irritation, seborrhea, and hair loss. Concentrated shampoos and combined shampoo/conditioners make it very difficult to wash out detergents.</p><p>Conversely, natural ingredients promote hair recovery after intensive hair treatments and help minimize hair loss. Studies show that the herb Saw Palmetto inhibits DHT formation with no side effects. Aloe Vera enhances cellular regeneration. And rosemary is a purifying, antiseptic agent that removes buildup and stimulates the hair root to grow hair. Green Tea has wonderful antibacterial, antiseptic and anti-dandruff properties and it adds sheen and elasticity to hair. L-argnine boosts nitric oxide levels promotes circulation and aids in the release of human growth hormone. Together, these breakthrough botanical discoveries represent the best chance for compromised hair follicles to begin growing healthy hair again.</p><p>Hair Cycle products are free of harsh chemicals and use safe natural ingredients that thoroughly cleanse the hair without unnecessary lathering. Natural ingredients combine to prevent premature hair loss and increase anagen stimulation by supplying hair follicles with essential nutrients. Like all herbal remedies, Hair Cycle products may take several months to slow or stop hair loss and to create a healthy hair environment that prolongs anagen.</p><p><strong>Facts About how Haircycle works</strong></p><p>Our team of physicians set about designing the Hair Cycle system to create a solution that wasn&#8217;t available on the market. Using a safe, all-natural formula, Hair Cycle products are gentle topical treatments that can fight hair loss on multiple fronts while fostering healthy healing.</p><p><strong>DHT: How Can Hair Cycle Products Minimize its Effects?</strong></p><p>One of the most common causes of hair loss in men pattern baldness is the hormone DHT (dihydrotestosterone). While drugs are available to reduce the formation of DHT, may cause unwanted side effects like sexual dysfunction or growth of breast tissue. Hair Cycle products contain all-natural, topical 5-alpha reductase inhibitors and androgen receptor blockers that actually prevent the conversion of testosterone to DHT without unpleasant side effects.</p><p><strong>The Anagen Phase: How Can Hair Cycle Products Extend It?</strong></p><p>The hair growth cycle consists of three phases” anagen, the active growth phase; catagen, the transition phase; and telogen, the resting or dormant phase. When hair spends more time in the telogen phase and less in the anagen phase, the result is hair loss and male pattern baldness.</p><p>Ideally used as part of an overall therapeutic program, Hair Cycle products contain several ingredients that stimulate the anagen growth phase to increase the number of growing hairs and keep hair in the active phase.</p><p><strong>Antioxidants: Why are they Important in Fighting Hair Loss?</strong></p><p>The formation of free radicals can damage cell membranes and nutrients, causing the breakdown of nitric oxide in the hair. If hair follicle cells are damaged by free radicals after hair transplant surgery, this can damage the tissue, destroying the new grafts place. To fight these free radicals, antioxidants are necessary to neutralize them, helping to detoxify and protect the body. There is not one single antioxidant that is most effective. In order to be effective, there must be a team of antioxidants all working together. Hair Cycle products include several powerful, but natural antioxidant substances to reduce free radical damage on a daily basis and during the critical post-operative period.</p><p><strong>Natural Ingredients: Why Are They an Important Part of a Daily Hair Care Routine?</strong></p><p>All products in the Hair Cycle system use safe natural ingredients for good reason. Nature knows best. Many of the lathering agents and chemicals found in mainstream hair care products contain substances that can actually harm the skin and scalp. Free of harsh chemicals, Hair Cycle products thoroughly cleanse hair without unnecessary lathering. Natural ingredients combine to prevent premature hair loss and increase anagen stimulation by supplying hair follicles with essential nutrients.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1817" class="elementor-tab-title" data-tab="7" role="button" aria-controls="elementor-tab-content-1817" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Does HairCycle promotes faster healing?</a>
					</h3>

					<div id="elementor-tab-content-1817" class="elementor-tab-content elementor-clearfix" data-tab="7" role="region" aria-labelledby="elementor-tab-title-1817"><blockquote><p>HairCycle speeds up crust removal and promotes faster healing</p></blockquote><p>Recently there was a study published by Bob Bernstein in which he evaluated the effects of scab removal following hair transplantation as a function of time following hair transplant surgery. He found that removal of the scab always resulted in a lost graft through day five following surgery. After day five, the risk of a lost graft reduced in frequency from 100% to 50% through day 8. With HairCycle products, we have found that the scab or crust can be removed by day three under physician supervision. Furthermore, scab reduction by the physician can be accomplished on the second-day post-surgery. This represents a significant time improvement over prior methods to treat the post-operative region following hair transplant surgery.</p><p>Physicians should consider Hair Cycle products for reduced erythema, faster healing, and more rapid removal of scabs following hair transplant surgery. Patient surveys show that patients note faster healing, less redness, and more rapid scab removal following the use of Hair Cycle products even when compared to other products currently available.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1818" class="elementor-tab-title" data-tab="8" role="button" aria-controls="elementor-tab-content-1818" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Can HairCycle Help Slow Down Hair Loss?</a>
					</h3>

					<div id="elementor-tab-content-1818" class="elementor-tab-content elementor-clearfix" data-tab="8" role="region" aria-labelledby="elementor-tab-title-1818"><p>HairCycle functions as a tool to reduce hair loss but it does not provide a permanent solution. The product works to enhance scalp wellness while addressing multiple hair loss factors which include inflammation and inadequate blood flow and elevated androgen levels. The product functions best when used with other treatments yet it serves as an excellent single solution for people who cannot or do not want to take medications. HairCycle provides a natural approach to support hair growth duration and minimize shedding regardless of your hair transplant status.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-1819" class="elementor-tab-title" data-tab="9" role="button" aria-controls="elementor-tab-content-1819" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Can HairCycle Help My Hair Grow Longer?</a>
					</h3>

					<div id="elementor-tab-content-1819" class="elementor-tab-content elementor-clearfix" data-tab="9" role="region" aria-labelledby="elementor-tab-title-1819"><p>Yes—it can! HairCycle is designed to support longer hair by promoting the anagen (growth) phase. Many women using the shampoo and conditioner combo say their hair grows longer between trims and looks fuller, healthier, and shinier. The products are gentle, free from harsh chemicals like sodium lauryl sulfate, and packed with natural ingredients that boost scalp health and hair growth. So if you&#8217;re trying to grow your hair out, HairCycle can help you get there more naturally and safely.</p></div>
				</div>
							<div class="elementor-toggle-item">
					<h3 id="elementor-tab-title-18110" class="elementor-tab-title" data-tab="10" role="button" aria-controls="elementor-tab-content-18110" aria-expanded="false">
												<span class="elementor-toggle-icon elementor-toggle-icon-right" aria-hidden="true">
															<span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-angle-down" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path></svg></span>
								<span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-angle-up" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path></svg></span>
													</span>
												<a class="elementor-toggle-title" tabindex="0">Why Did My Hair Stop Growing All of a Sudden?</a>
					</h3>

					<div id="elementor-tab-content-18110" class="elementor-tab-content elementor-clearfix" data-tab="10" role="region" aria-labelledby="elementor-tab-title-18110"><p>Hair that suddenly stops growing can be caused by stress, hormonal shifts, or long-term use of harsh chemical treatments, which can damage follicles or trigger conditions like telogen effluvium. It’s a good idea to stop using any harsh hair products and consult with a dermatologist or hair restoration specialist to identify the root cause. In the meantime, using gentle products like HairCycle—formulated with natural ingredients to support the growth phase—can help encourage healthier, fuller growth over time.</p></div>
				</div>
										<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"What makes HairCycle Shampoo stand out from standard shampoos?","acceptedAnswer":{"@type":"Answer","text":"<p>The gentle cleansing formula of HairCycle Shampoo avoids harsh chemicals such as sodium lauryl sulfate which removes natural oils from hair. The product contains natural ingredients including biotin and tea tree oil and grapefruit seed extract which work together to promote scalp health and minimize buildup while enhancing hair appearance without harming its natural shine or volume.<\/p>"}},{"@type":"Question","name":"What is the  HairCycle expiration date?","acceptedAnswer":{"@type":"Answer","text":"<p>will remain effective and safe for two years when stored in normal room temperture throughout that period. The product lifespan becomes shorter when you store it in extreme cold or heat conditions. You should purchase a fresh bottle since your current bottle has reached its two-year mark. You should purchase the travel size bottle because you used half of your previous bottle. The biotin spray requires only a light mist application. You should avoid saturating your scalp with product until it starts dripping down your forehead. The application method you described is too heavy for the product.<\/p>"}},{"@type":"Question","name":"Are the HairCycle products safe?","acceptedAnswer":{"@type":"Answer","text":"<p>HairCycle products are made with natural ingredients and are generally safe\u2014unless you\u2019re allergic to something specific. They\u2019re designed to support longer, healthier hair by promoting a better growth phase, though they don\u2019t treat male pattern baldness. Overall, they\u2019re much gentler on your scalp than most chemical-based shampoos.<\/p>"}},{"@type":"Question","name":"What happens if I stop using HairCycle products?","acceptedAnswer":{"@type":"Answer","text":"<p>If you stop using HairCycle, your hair won\u2019t fall out\u2014but the growth phase (anagen) may shorten. That means hair could shed sooner over time. HairCycle helps extend how long each hair grows before resting, so staying on it may help keep your hair healthier and fuller for longer.<\/p>"}},{"@type":"Question","name":"Can HairCycle cause shedding or hair thinning","acceptedAnswer":{"@type":"Answer","text":"<p>Not really\u2014but it can look that way at first. HairCycle may push out old resting hairs as it stimulates new growth, which can seem like shedding. This is actually a good sign\u2014it means the product is encouraging new hairs to enter the growth phase (anagen). It\u2019s also possible your hair loss is simply progressing naturally and just happens to coincide with starting the shampoo. HairCycle doesn\u2019t cause hair loss\u2014it helps extend the life of existing hair. Keep using it consistently for best results.<\/p>"}},{"@type":"Question","name":"Can HairCycle slow or stop hair loss?","acceptedAnswer":{"@type":"Answer","text":"<blockquote><p>can you tell me if your products slow or stop hair loss&#8230; i&#8217;m only interested in the products to help slow hair loss and not to have a transplant&#8230; have you had success with it slowing or halting hair loss or shedding?<\/p><\/blockquote><p>Everyone loses hair. In fact, losing around 100 hairs a day is a natural part of the hair growth cycle. But at some point, most people experience excessive hair loss. Whether it&#8217;s triggered by hormonal imbalance, stress, medication, exposure to chemicals, nutritional deficiency, thyroid or skin disease, or even childbirth or birth control pills, loss occurs. In most cases, it is a temporary situation, but sometimes can be permanent. Male pattern baldness or androgenic alopecia is the most common form of hair loss in men, and both are permanent. Fortunately, medications and hair care products can be used to manage hair loss.<\/p><p>Hair Cycle hair care products fight hair loss at its root and stimulate anagen and retards hair loss by extending the duration of anagen. The secret is a unique combination of all-natural ingredients that block androgen receptors, ease inflammation, decrease the formation of DHTs and free radicals, and encourage the growth of nitro oxidants and hair follicle cells.<\/p><p>Many of the chemicals found in traditional hair care products contain substances that can be harmful to the skin and scalp. The most frequent causes of stress to the scalp are improper hair styling, staining, and hair care ingredients, and insufficient rinsing after shampooing or rinsing with highly chlorinated or contaminated water. In fact, remaining detergents are often the leading cause of scalp irritation, seborrhea, and hair loss. Concentrated shampoos and combined shampoo\/conditioners make it very difficult to wash out detergents.<\/p><p>Conversely, natural ingredients promote hair recovery after intensive hair treatments and help minimize hair loss. Studies show that the herb Saw Palmetto inhibits DHT formation with no side effects. Aloe Vera enhances cellular regeneration. And rosemary is a purifying, antiseptic agent that removes buildup and stimulates the hair root to grow hair. Green Tea has wonderful antibacterial, antiseptic and anti-dandruff properties and it adds sheen and elasticity to hair. L-argnine boosts nitric oxide levels promotes circulation and aids in the release of human growth hormone. Together, these breakthrough botanical discoveries represent the best chance for compromised hair follicles to begin growing healthy hair again.<\/p><p>Hair Cycle products are free of harsh chemicals and use safe natural ingredients that thoroughly cleanse the hair without unnecessary lathering. Natural ingredients combine to prevent premature hair loss and increase anagen stimulation by supplying hair follicles with essential nutrients. Like all herbal remedies, Hair Cycle products may take several months to slow or stop hair loss and to create a healthy hair environment that prolongs anagen.<\/p><p><strong>Facts About how Haircycle works<\/strong><\/p><p>Our team of physicians set about designing the Hair Cycle system to create a solution that wasn&#8217;t available on the market. Using a safe, all-natural formula, Hair Cycle products are gentle topical treatments that can fight hair loss on multiple fronts while fostering healthy healing.<\/p><p><strong>DHT: How Can Hair Cycle Products Minimize its Effects?<\/strong><\/p><p>One of the most common causes of hair loss in men pattern baldness is the hormone DHT (dihydrotestosterone). While drugs are available to reduce the formation of DHT, may cause unwanted side effects like sexual dysfunction or growth of breast tissue. Hair Cycle products contain all-natural, topical 5-alpha reductase inhibitors and androgen receptor blockers that actually prevent the conversion of testosterone to DHT without unpleasant side effects.<\/p><p><strong>The Anagen Phase: How Can Hair Cycle Products Extend It?<\/strong><\/p><p>The hair growth cycle consists of three phases\u201d anagen, the active growth phase; catagen, the transition phase; and telogen, the resting or dormant phase. When hair spends more time in the telogen phase and less in the anagen phase, the result is hair loss and male pattern baldness.<\/p><p>Ideally used as part of an overall therapeutic program, Hair Cycle products contain several ingredients that stimulate the anagen growth phase to increase the number of growing hairs and keep hair in the active phase.<\/p><p><strong>Antioxidants: Why are they Important in Fighting Hair Loss?<\/strong><\/p><p>The formation of free radicals can damage cell membranes and nutrients, causing the breakdown of nitric oxide in the hair. If hair follicle cells are damaged by free radicals after hair transplant surgery, this can damage the tissue, destroying the new grafts place. To fight these free radicals, antioxidants are necessary to neutralize them, helping to detoxify and protect the body. There is not one single antioxidant that is most effective. In order to be effective, there must be a team of antioxidants all working together. Hair Cycle products include several powerful, but natural antioxidant substances to reduce free radical damage on a daily basis and during the critical post-operative period.<\/p><p><strong>Natural Ingredients: Why Are They an Important Part of a Daily Hair Care Routine?<\/strong><\/p><p>All products in the Hair Cycle system use safe natural ingredients for good reason. Nature knows best. Many of the lathering agents and chemicals found\u00a0in mainstream hair care products contain substances that can actually harm the skin and scalp. Free of harsh chemicals, Hair Cycle products\u00a0thoroughly cleanse hair without unnecessary lathering. Natural ingredients combine to prevent premature hair loss and increase anagen stimulation by supplying hair follicles with essential nutrients.<\/p>"}},{"@type":"Question","name":"Does HairCycle promotes faster healing?","acceptedAnswer":{"@type":"Answer","text":"<blockquote><p>HairCycle speeds up crust removal and promotes faster healing<\/p><\/blockquote><p>Recently there was a study published by Bob Bernstein in which he evaluated the effects of scab removal following hair transplantation as a function of time following hair transplant surgery. He found that removal of the scab always resulted in a lost graft through day five following surgery. After day five, the risk of a lost graft reduced in frequency from 100% to 50% through day 8. With HairCycle products, we have found that the scab or crust can be removed by day three under physician supervision. Furthermore, scab reduction by the physician can be accomplished on the second-day post-surgery. This represents a significant time improvement over prior methods to treat the post-operative region following hair transplant surgery.<\/p><p>Physicians should consider Hair Cycle products for reduced erythema, faster healing, and more rapid removal of scabs following hair transplant surgery. Patient surveys show that patients note faster healing, less redness, and more rapid scab removal following the use of Hair Cycle products even when compared to other products currently available.<\/p>"}},{"@type":"Question","name":"Can HairCycle Help Slow Down Hair Loss?","acceptedAnswer":{"@type":"Answer","text":"<p>HairCycle functions as a tool to reduce hair loss but it does not provide a permanent solution. The product works to enhance scalp wellness while addressing multiple hair loss factors which include inflammation and inadequate blood flow and elevated androgen levels. The product functions best when used with other treatments yet it serves as an excellent single solution for people who cannot or do not want to take medications. HairCycle provides a natural approach to support hair growth duration and minimize shedding regardless of your hair transplant status.<\/p>"}},{"@type":"Question","name":"Can HairCycle Help My Hair Grow Longer?","acceptedAnswer":{"@type":"Answer","text":"<p>Yes\u2014it can! HairCycle is designed to support longer hair by promoting the anagen (growth) phase. Many women using the shampoo and conditioner combo say their hair grows longer between trims and looks fuller, healthier, and shinier. The products are gentle, free from harsh chemicals like sodium lauryl sulfate, and packed with natural ingredients that boost scalp health and hair growth. So if you&#8217;re trying to grow your hair out, HairCycle can help you get there more naturally and safely.<\/p>"}},{"@type":"Question","name":"Why Did My Hair Stop Growing All of a Sudden?","acceptedAnswer":{"@type":"Answer","text":"<p>Hair that suddenly stops growing can be caused by stress, hormonal shifts, or long-term use of harsh chemical treatments, which can damage follicles or trigger conditions like telogen effluvium. It\u2019s a good idea to stop using any harsh hair products and consult with a dermatologist or hair restoration specialist to identify the root cause. In the meantime, using gentle products like HairCycle\u2014formulated with natural ingredients to support the growth phase\u2014can help encourage healthier, fuller growth over time.<\/p>"}}]}</script>
					</div>
						</div>
				</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-c4df5be e-flex e-con-boxed e-con e-parent" data-id="c4df5be" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-ce8e5ce elementor-widget elementor-widget-heading" data-id="ce8e5ce" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Latest News</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-2a129f0 elementor-widget elementor-widget-eael-post-timeline" data-id="2a129f0" data-element_type="widget" data-e-type="widget" data-widget_type="eael-post-timeline.default">
				<div class="elementor-widget-container">
					<div id="eael-post-timeline-2a129f0" class="eael-post-timeline timeline-layout-default eael-post-timeline-arrow-">
            <div class="eael-post-timeline eael-post-appender eael-post-appender-2a129f0"><article class="eael-timeline-post eael-timeline-column">
    <div class="eael-timeline-bullet"></div>
    <div class="eael-timeline-post-inner">
        <a class="eael-timeline-post-link" href="https://www.haircycle.com/blog/hair-transplant-aftercare-guide-faster-healing-results/" title="Hair Transplant Aftercare: The Complete Guide to Faster Healing and Better Results">
            <time datetime="January 8, 2026">January 8, 2026</time>
            <div class="eael-timeline-post-image  attachment-large size-large" style="background-image: url(https://www.haircycle.com/wp-content/uploads/sites/4/2026/01/hair-transplant-aftercare-1024x683.jpg);"></div><div class="eael-timeline-post-title">
                    <h3 class="eael-timeline-post-title-text">Hair Transplant Aftercare: The Complete Guide to Faster Healing and Better Results</h3>
                </div></a>
    </div>
</article><article class="eael-timeline-post eael-timeline-column">
    <div class="eael-timeline-bullet"></div>
    <div class="eael-timeline-post-inner">
        <a class="eael-timeline-post-link" href="https://www.haircycle.com/blog/why-natural-hair-growth-shampoo-changes-everything/" title="Why Natural Hair Growth Shampoo Changes Everything">
            <time datetime="September 14, 2025">September 14, 2025</time>
            <div class="eael-timeline-post-image  attachment-large size-large" style="background-image: url(https://www.haircycle.com/wp-content/uploads/sites/4/2025/09/natural-shampoo-feature-1024x585.jpg);"></div><div class="eael-timeline-post-title">
                    <h3 class="eael-timeline-post-title-text">Why Natural Hair Growth Shampoo Changes Everything</h3>
                </div></a>
    </div>
</article><article class="eael-timeline-post eael-timeline-column">
    <div class="eael-timeline-bullet"></div>
    <div class="eael-timeline-post-inner">
        <a class="eael-timeline-post-link" href="https://www.haircycle.com/blog/multi-strain-probiotic-20b-gut-hormone-health/" title="Multi-Strain Probiotic 20B: Achieve Gut and Hormone Health">
            <time datetime="August 21, 2025">August 21, 2025</time>
            <div class="eael-timeline-post-image  attachment-large size-large" style="background-image: url(https://www.haircycle.com/wp-content/uploads/sites/4/2025/08/probiotics-1024x579.jpg);"></div><div class="eael-timeline-post-title">
                    <h3 class="eael-timeline-post-title-text">Multi-Strain Probiotic 20B: Achieve Gut and Hormone Health</h3>
                </div></a>
    </div>
</article><article class="eael-timeline-post eael-timeline-column">
    <div class="eael-timeline-bullet"></div>
    <div class="eael-timeline-post-inner">
        <a class="eael-timeline-post-link" href="https://www.haircycle.com/blog/rejuvenate-skin-anti-aging-nitric-oxide-activating-serum/" title="Rejuvenate Your Skin from Within: Anti-Aging Nitric Oxide Activating Serum">
            <time datetime="June 14, 2025">June 14, 2025</time>
            <div class="eael-timeline-post-image  attachment-large size-large" style="background-image: url(https://www.haircycle.com/wp-content/uploads/sites/4/2025/06/Untitled-design-1-1024x683.jpg);"></div><div class="eael-timeline-post-title">
                    <h3 class="eael-timeline-post-title-text">Rejuvenate Your Skin from Within: Anti-Aging Nitric Oxide Activating Serum</h3>
                </div></a>
    </div>
</article></div>
		</div>            <div class="eael-load-more-button-wrap eael-force-hide">
                <button class="eael-load-more-button" id="eael-load-more-btn-2a129f0" data-widget-id="2a129f0" data-widget="2a129f0" data-page-id="4041" data-template="{&quot;dir&quot;:&quot;lite&quot;,&quot;file_name&quot;:&quot;default.php&quot;,&quot;name&quot;:&quot;Post-Timeline&quot;}" data-class="Essential_Addons_Elementor\Elements\Post_Timeline" data-layout="" data-page="1" data-args="orderby=date&amp;order=desc&amp;ignore_sticky_posts=1&amp;post_status=publish&amp;posts_per_page=4&amp;offset=0&amp;post_type=post" data-max-page="7">
                    <span class="eael-btn-loader button__loader"></span>
                    <span class="eael_load_more_text"></span>
                </button>
            </div>
            				</div>
				</div>
					</div>
				</div>
				</div>
		
<script nitro-exclude>
    document.cookie = 'nitroCachedPage=' + (!window.NITROPACK_STATE ? '0' : '1') + '; path=/; SameSite=Lax';
</script>
<script nitro-exclude>
    if (!window.NITROPACK_STATE || window.NITROPACK_STATE != 'FRESH') {
        var proxyPurgeOnly = 0;
        if (typeof navigator.sendBeacon !== 'undefined') {
            var nitroData = new FormData(); nitroData.append('nitroBeaconUrl', 'aHR0cHM6Ly93d3cuaGFpcmN5Y2xlLmNvbS8/aWQ9MSZvcHRpb249Y29tX29icnNzJnRhc2s9ZmVlZA=='); nitroData.append('nitroBeaconCookies', 'W10='); nitroData.append('nitroBeaconHash', '061550f68a6c85c836963131b74894321767e0e8b017a340f01a8f82c85b36cffe2221f480a6beecd01a3636e835e9685cdf38207c878df9ed7f896bf7743dec'); nitroData.append('proxyPurgeOnly', ''); nitroData.append('layout', 'home'); navigator.sendBeacon(location.href, nitroData);
        } else {
            var xhr = new XMLHttpRequest(); xhr.open('POST', location.href, true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.send('nitroBeaconUrl=aHR0cHM6Ly93d3cuaGFpcmN5Y2xlLmNvbS8/aWQ9MSZvcHRpb249Y29tX29icnNzJnRhc2s9ZmVlZA==&nitroBeaconCookies=W10=&nitroBeaconHash=061550f68a6c85c836963131b74894321767e0e8b017a340f01a8f82c85b36cffe2221f480a6beecd01a3636e835e9685cdf38207c878df9ed7f896bf7743dec&proxyPurgeOnly=&layout=home');
        }
    }
</script>
	</div>
	<!-- .rey-siteContent -->

	
<footer class="rey-siteFooter rey-siteFooter--custom" >

    		<div data-elementor-type="wp-post" data-elementor-id="655" class="elementor elementor-655" data-elementor-post-type="rey-global-sections" data-elementor-gstype="footer" data-page-el-selector="body.elementor-page-655">
						<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-214d1bea rey-section-bg--gradient rey-flexWrap elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="214d1bea" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-1772ed99" data-id="1772ed99" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--1772ed99 elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-720e6e22 elementor-widget elementor-widget-image" data-id="720e6e22" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="337" height="264" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/haircycle-logo-2024-top.png" class="attachment-full size-full wp-image-701" alt="HairCycle Logo Square" srcset="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/haircycle-logo-2024-top.png 337w, https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/haircycle-logo-2024-top-300x235.png 300w" sizes="(max-width: 337px) 100vw, 337px" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-6ae75f6c elementor-widget elementor-widget-text-editor" data-id="6ae75f6c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Connect with us</p>								</div>
				</div>
				<div class="elementor-element elementor-element-68af854 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="68af854" data-element_type="widget" data-e-type="widget" data-widget_type="social-icons.default">
				<div class="elementor-widget-container">
							<div class="elementor-social-icons-wrapper elementor-grid" role="list">
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-3c38254" href="https://www.facebook.com/HairCycleProducts" target="_blank">
						<span class="elementor-screen-only">Facebook-f</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-19cfc1a" href="https://www.instagram.com/hair_cycle/" target="_blank">
						<span class="elementor-screen-only">Instagram</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-e4a2f59" href="https://twitter.com/HairCycle" target="_blank">
						<span class="elementor-screen-only">Twitter</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg>					</a>
				</span>
					</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-2b3ec8a elementor-widget elementor-widget-image" data-id="2b3ec8a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="250" height="109" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/secure-ssl-encryption-logo-secure-connection-icon-illustration-ssl-certificate-icon-secure-ssl-encryption-illustration-logo-design-vector.png" class="attachment-medium size-medium wp-image-713" alt="Site Secured SSL" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-2a1a415 elementor-widget elementor-widget-text-editor" data-id="2a1a415" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Available Monday &#8211; Friday, 9 AM &#8211; 5 PM EST</p><p><a href="https://www.haircycle.com/contact/">Get Support</a></p>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-255ea9eb" data-id="255ea9eb" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--255ea9eb elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6fb78e37 elementor-widget elementor-widget-heading" data-id="6fb78e37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Receive Email Updates</h4>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-2f14a12b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2f14a12b" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-673ed625" data-id="673ed625" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--673ed625 elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7ceed4f4 elementor-widget elementor-widget-heading" data-id="7ceed4f4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Info</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-5a53744 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="5a53744" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items">
							<li class="elementor-icon-list-item">
											<a href="/blog/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">HairCycle Blog</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/frequently-asked-questions/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">F.A.Q</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/site-map/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Site Map</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/contact/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Contact/Support</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/shipping-returns/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Shipping &amp; Returns</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/refund-returns/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Refund and Returns Policy</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2fe9d8e2" data-id="2fe9d8e2" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--2fe9d8e2 elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-2ca31bd9 elementor-widget elementor-widget-heading" data-id="2ca31bd9" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Our Store</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-415fc77 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="415fc77" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items">
							<li class="elementor-icon-list-item">
											<a href="/shop/">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">All Products</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/my-account/" rel="nofollow">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">My Account</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/my-account/orders/" rel="nofollow">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">My Orders</span>
											</a>
									</li>
								<li class="elementor-icon-list-item">
											<a href="/cart/" rel="nofollow">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>						</span>
										<span class="elementor-icon-list-text">My Cart</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-d52bdc7" data-id="d52bdc7" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--d52bdc7 elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8854929 elementor-widget elementor-widget-image" data-id="8854929" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="300" height="114" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/02/Ship-fedex.png" class="attachment-large size-large wp-image-1860" alt="Ship with FedEx" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
					</div>
		</div>
					</div>
		</section>
					</div>
		</div>
					</div>
		</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-9e86983 e-con-full e-flex e-con e-parent" data-id="9e86983" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-e5c1137 e-con-full e-flex e-con e-child" data-id="e5c1137" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-275c40b elementor-widget elementor-widget-text-editor" data-id="275c40b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									© Copyright 2026, HairCycle L.L.C. , All Rights Reserved								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-dddec23 e-flex e-con-boxed e-con e-child" data-id="dddec23" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-58a41d4 elementor-widget__width-auto elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor" data-id="58a41d4" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Secure payments</p>								</div>
				</div>
				<div class="elementor-element elementor-element-8b74b81 elementor-widget__width-auto elementor-widget elementor-widget-image" data-id="8b74b81" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="48" height="16" src="https://www.haircycle.com/wp-content/uploads/sites/4/2019/11/visa-pay-logo-1.svg" class="attachment-large size-large wp-image-59" alt="Visa card" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-fa9b785 elementor-widget__width-auto elementor-widget elementor-widget-image" data-id="fa9b785" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="49" height="30" src="https://www.haircycle.com/wp-content/uploads/sites/4/2019/11/master-card-logo-1.svg" class="attachment-large size-large wp-image-61" alt="Master Card" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-cbffa77 elementor-widget__width-auto --il--stretch elementor-widget elementor-widget-image" data-id="cbffa77" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="48" height="18" src="https://www.haircycle.com/wp-content/uploads/sites/4/2019/11/american-express-logo-1.svg" class="attachment-large size-large wp-image-64" alt="American Express card" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-c988f1f elementor-widget__width-auto elementor-widget elementor-widget-image" data-id="c988f1f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="51" height="15" src="https://www.haircycle.com/wp-content/uploads/sites/4/2019/11/paypal-logo-1.svg" class="attachment-large size-large wp-image-60" alt="Paypal Payments" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-8f56031 elementor-widget__width-auto elementor-widget elementor-widget-image" data-id="8f56031" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img width="60" height="28" src="https://www.haircycle.com/wp-content/uploads/sites/4/2019/11/applepay-1.svg" class="attachment-medium size-medium wp-image-63" alt="Apple Pay payments" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
					</div>
				</div>
				</div>
				</div>
		
</footer>
<!-- .rey-siteFooter -->


</div>
<!-- .rey-siteWrapper -->

<div class="rey-stickyContent rey-noSp  --dir-aware" data-lazy-hidden data-offset="" data-align="top">		<div data-elementor-type="wp-post" data-elementor-id="149" class="elementor elementor-149" data-elementor-post-type="rey-global-sections" data-elementor-gstype="header" data-page-el-selector="body.elementor-page-149">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-1a9ccab elementor-section-content-middle rey-section-bg--gradient elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1a9ccab" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c05efb3" data-id="c05efb3" data-element_type="column" data-e-type="column">
			<div class="elementor-column-wrap--c05efb3 elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6b122d6 elementor-widget__width-auto elementor-widget-mobile__width-initial elementor-widget elementor-widget-reycore-header-logo" data-id="6b122d6" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-logo.default">
				<div class="elementor-widget-container">
					
<div class="rey-logoWrapper">

	
        <div class="rey-siteLogo">
			<a href="https://www.haircycle.com/" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo-link" rel="home" itemprop="url"><img width="230" height="56" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/cropped-HairCycle-logo-main.png" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo" alt="HairCycle-logo-main" loading="eager" decoding="async" /></a>		</div>

    </div>
<!-- .rey-logoWrapper -->
				</div>
				</div>
				<div data-hoverlay="hide" class="elementor-element elementor-element-ea0ecf9 elementor-widget__width-auto --il--right --il--tablet-left --il--mobile-left new-header-menu --icons-start --submenu-display-collapsed --tap-open --panel-dir--left elementor-widget elementor-widget-reycore-header-navigation" data-id="ea0ecf9" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-navigation.default">
				<div class="elementor-widget-container">
					
<button class="btn rey-mainNavigation-mobileBtn rey-headerIcon __hamburger --hs-25bars" aria-label="Open menu">
	<div class="__bars">
		<span class="__bar"></span>
		<span class="__bar"></span>
		<span class="__bar"></span>
	</div>
	<svg aria-hidden="true" role="img" id="rey-icon-close-6a27989761295" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg></button>
<!-- .rey-mainNavigation-mobileBtn -->

    <nav id="site-navigation-ea0ecf9-sticky" class="rey-mainNavigation rey-mainNavigation--desktop  --shadow-1" data-id="-ea0ecf9-sticky" aria-label="Main Menu" data-sm-indicator="arrow2" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope">

        <ul id="main-menu-desktop-ea0ecf9-sticky" class="rey-mainMenu rey-mainMenu--desktop id--mainMenu--desktop --has-indicators --submenu-top rey-navEl --menuHover-simple --megamenu-support"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5077 depth--0 --is-mega --is-mega-gs --mega-full menu-item-has-children"><a href="#"><span>Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a><div class="rey-mega-gs">		<div data-elementor-type="wp-post" data-elementor-id="4363" class="elementor elementor-4363" data-elementor-post-type="rey-global-sections" data-elementor-gstype="megamenu" data-page-el-selector="body.elementor-page-4363">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-92396f3 product-custom-menu elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="92396f3" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-5ee05d7 e-con-full e-flex e-con e-child" data-id="5ee05d7" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-02ac4d7 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="02ac4d7" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu --dd-menu --dd-menu--mobiles">
			<h2 class="reyEl-menuTitle reyEl-menuTitle--"><span><a href="/shop/hair-growth-products/" class="header-menu-weight">Hair Growth Products</a></span><svg aria-hidden="true" role="img" id="rey-icon-arrow-6a27989764f8a" class="rey-icon rey-icon-arrow " viewbox="0 0 22 13"><style type="text/css">.rey-icon-arrow.--to-left{transform:rotate(90deg) scale(0.7);}.rey-icon-arrow.--to-right{transform:rotate(-90deg) scale(0.7);}.rey-icon-arrow.--to-top{transform:rotate(180deg);}</style><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <polygon fill="currentColor" points="-0.01 2.44 10.99 13.073 21.98 2.44 19.5 0.008 10.99 8.243 2.47 0.008"></polygon></g></svg></h2><div class="reyEl-menu-navWrapper"><ul id="menu-category-hair-growth-products-1" class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4528 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4529 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4527 o-id-1306"><a href="https://www.haircycle.com/product/haircycle-texture-gel/"><span>Texture Gel</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4526 o-id-3544"><a href="https://www.haircycle.com/product/help-hair-whey-protein/"><span>Help Hair Whey Protein</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4525 o-id-3541"><a href="https://www.haircycle.com/product/viviscal-professional/"><span>Viviscal Professional</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4524 o-id-3650"><a href="https://www.haircycle.com/product/elevai-enfinity-serum/"><span>ELEVAI Enfinity Serum</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4523 o-id-3653"><a href="https://www.haircycle.com/product/intact-5-pre-shampoo/"><span>Intact 5 Pre-Shampoo</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5774 o-id-1341"><a href="https://www.haircycle.com/product/rodan-and-fields-lash-boost/"><span>Rodan and Fields Lash Boost</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-cb355ff e-con-full e-flex e-con e-child" data-id="cb355ff" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-f01e8e6 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="f01e8e6" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu --dd-menu --dd-menu--mobiles">
			<h2 class="reyEl-menuTitle reyEl-menuTitle--"><span><a href="/shop/hair-transplant-products/" class="header-menu-weight">Hair Transplant Products</a></span><svg aria-hidden="true" role="img" id="rey-icon-arrow-6a2798976873d" class="rey-icon rey-icon-arrow " viewbox="0 0 22 13"><style type="text/css">.rey-icon-arrow.--to-left{transform:rotate(90deg) scale(0.7);}.rey-icon-arrow.--to-right{transform:rotate(-90deg) scale(0.7);}.rey-icon-arrow.--to-top{transform:rotate(180deg);}</style><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <polygon fill="currentColor" points="-0.01 2.44 10.99 13.073 21.98 2.44 19.5 0.008 10.99 8.243 2.47 0.008"></polygon></g></svg></h2><div class="reyEl-menu-navWrapper"><ul id="menu-category-hair-transplant-products-1" class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4508 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4509 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4506 o-id-1310"><a href="https://www.haircycle.com/product/post-biotin-spray/"><span>⁠HairCycle Post-Biotin Spray</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4507 o-id-1314"><a href="https://www.haircycle.com/product/haircycle-post-surgical-gel/"><span>HairCycle Post Surgical Gel</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4510 o-id-1320"><a href="https://www.haircycle.com/product/hair-transplant-kit/"><span>Hair Transplant Kit</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-6296 o-id-1316"><a href="https://www.haircycle.com/product/haircycle-basic-kit/"><span>HairCycle Basic Kit</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-59d261a e-con-full e-flex e-con e-child" data-id="59d261a" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-8f62550 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="8f62550" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu --dd-menu --dd-menu--mobiles">
			<h2 class="reyEl-menuTitle reyEl-menuTitle--"><span><a href="/shop/hair-body-supplements/" class="header-menu-weight">Hair & Body Supplements</a></span><svg aria-hidden="true" role="img" id="rey-icon-arrow-6a2798976bdfa" class="rey-icon rey-icon-arrow " viewbox="0 0 22 13"><style type="text/css">.rey-icon-arrow.--to-left{transform:rotate(90deg) scale(0.7);}.rey-icon-arrow.--to-right{transform:rotate(-90deg) scale(0.7);}.rey-icon-arrow.--to-top{transform:rotate(180deg);}</style><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <polygon fill="currentColor" points="-0.01 2.44 10.99 13.073 21.98 2.44 19.5 0.008 10.99 8.243 2.47 0.008"></polygon></g></svg></h2><div class="reyEl-menu-navWrapper"><ul id="menu-category-hair-body-supplements-1" class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4516 o-id-3543"><a href="https://www.haircycle.com/product/iodine/"><span>Lodine +</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4521 o-id-3542"><a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/"><span>Neuro Performance Plasmalogens</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4519 o-id-3517"><a href="https://www.haircycle.com/product/nitric-oxiden-n-o/"><span>Nitric Oxide Premium Supplement 60 Caps</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7468 o-id-3536"><a href="https://www.haircycle.com/product/dim-sgs/"><span>Dim SGS+</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4517 o-id-3535"><a href="https://www.haircycle.com/product/methyl-factors/"><span>Methyl Factors</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4512 o-id-3508"><a href="https://www.haircycle.com/product/adk-5/"><span>ADK 5</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7471 o-id-3510"><a href="https://www.haircycle.com/product/adk-10/"><span>ADK 10</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4522 o-id-3529"><a href="https://www.haircycle.com/product/melatonin-60mg-dfs/"><span>Melatonin 60mg (DFS)</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5443 o-id-5435"><a href="https://www.haircycle.com/product/prodromeglia-softgels/"><span>ProdromeGlia</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ba5832b e-con-full e-flex e-con e-child" data-id="ba5832b" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-1c065f0 header-menu-weight elementor-widget elementor-widget-heading" data-id="1c065f0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default"><a href="/shop/skincare/">Skincare</a></h2>				</div>
				</div>
				<div class="elementor-element elementor-element-92637e3 elementor-align-left reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="92637e3" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.default">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu">
			<div class="reyEl-menu-navWrapper"><ul id="menu-category-skincare-1" class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5867 o-id-5822"><a href="https://www.haircycle.com/product/anti-aging-nitric-oxide-activating-serum/"><span>Anti-Aging Nitric Oxide Activating Serum</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-5868 o-id-4481"><a href="https://www.haircycle.com/product/cicaplast-baume-b5-cream-for-skin-regeneration-soothing/"><span>Cicaplast Baume B5+ Cream For Skin Regeneration &#038; Soothing</span></a></li>
</ul></div>		</div>
						</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-b5ccba5 elementor-hidden-desktop side-content-canvas-custom e-flex e-con-boxed e-con e-parent" data-id="b5ccba5" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
					</div>
				</div>
				</div>
		</div></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4929 depth--0 --is-regular o-id-13"><a href="https://www.haircycle.com/shop/"><span>Shop</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1757 depth--0 --is-mega o-id-1109 --is-mega-gs --mega-full menu-item-has-children"><a href="https://www.haircycle.com/about-haircycle/"><span>Learn</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a><div class="rey-mega-gs">		<div data-elementor-type="wp-post" data-elementor-id="1760" class="elementor elementor-1760" data-elementor-post-type="rey-global-sections" data-elementor-gstype="megamenu" data-page-el-selector="body.elementor-page-1760">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-fd002f4 e-flex e-con-boxed e-con e-parent" data-id="fd002f4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-80e29bf e-con-full e-flex e-con e-child" data-id="80e29bf" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-dab6af3 elementor-widget elementor-widget-heading" data-id="dab6af3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">About HairCycle</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-5b5bdf9 reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="5b5bdf9" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.custom-items">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu">
			<div class="reyEl-menu-navWrapper"><ul class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item "><a class="" href="/about-haircycle/"><span>About Us</span></a></li><li class="menu-item "><a class="" href="/the-haircycle-science/"><span>The HairCycle Science</span></a></li><li class="menu-item "><a class="" href="/about-hair-loss/"><span>All About Hair Loss</span></a></li><li class="menu-item "><a class="" href="/haircycle-and-hair-transplant-surgery/"><span>HairCycle & Hair Transplant</span></a></li><li class="menu-item "><a class="" href="/dht-inhibitors/"><span>DHT Inhibitors</span></a></li><li class="menu-item "><a class="" href="https://www.haircycle.com/anagen-stimulators-effect-hair-loss/"><span>Anagen Stimulators</span></a></li></ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1ef9c29 e-con-full e-flex e-con e-child" data-id="1ef9c29" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-8688b6d elementor-widget elementor-widget-heading" data-id="8688b6d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Customer Reviews</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-c82d84d elementor-widget elementor-widget-text-editor" data-id="c82d84d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<div class="u-toggle-text u-toggle-text-wrapper --collapsed" data-height="12"><div class="u-toggle-content">Every HairCycle customer undergoes a unique journey. Discover firsthand testimonials showcasing the diverse personal progress experienced by our valued clientele.</div><button class="btn u-toggle-btn" aria-label="Toggle" data-read-more="Read more" data-read-less="Less"></button></div>								</div>
				</div>
				<div class="elementor-element elementor-element-e73e0ba --btn-block--yes elementor-widget elementor-widget-button" data-id="e73e0ba" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/reviews/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-thumbs-up" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"></path></svg>			</span>
									<span class="elementor-button-text">Read Reviews</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f6b5b1d elementor-widget elementor-widget-heading" data-id="f6b5b1d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">F.A.Q</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-6c9a8e0 elementor-widget elementor-widget-text-editor" data-id="6c9a8e0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									Frequently asked questions about the HairCycle hair treatment products.								</div>
				</div>
				<div class="elementor-element elementor-element-462edca --btn-block--yes elementor-widget elementor-widget-button" data-id="462edca" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/frequently-asked-questions/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-question-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"></path></svg>			</span>
									<span class="elementor-button-text">Frequently Asked Questions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
				</div>
		</div></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1759 depth--0 --is-regular o-id-1400"><a href="https://www.haircycle.com/physicians-area/"><span>Professionals</span></a></li>
<li class="--separated menu-item menu-item-type-post_type menu-item-object-page menu-item-105 depth--0 --is-regular o-id-90"><a href="https://www.haircycle.com/blog/"><span>Blog</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1758 depth--0 --is-regular o-id-1356"><a href="https://www.haircycle.com/contact/"><span>Contact</span></a></li>
</ul>	</nav><!-- .rey-mainNavigation -->



	<nav
		id="site-navigation-mobile-ea0ecf9-sticky"
		class="rey-mainNavigation rey-mainNavigation--mobile rey-mobileNav "
		data-id="-ea0ecf9-sticky" aria-label="Main Menu" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"	>
		<div class="rey-mobileNav-container">
			<div class="rey-mobileNav-header">

				
				<div class="rey-siteLogo">
					<a href="https://www.haircycle.com/" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo-link" rel="home" itemprop="url"><img width="60" height="40" src="https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/cropped-HairCycle-logo-main.png" data-no-lazy="1" data-skip-lazy="1" class="no-lazy custom-logo" alt="HairCycle-logo-main" loading="eager" decoding="async" /></a>				</div>

				<button class="__arrClose btn rey-mobileMenu-close js-rey-mobileMenu-close" aria-label="Close menu"><span class="__icons"><svg aria-hidden="true" role="img" id="rey-icon-close-6a2798977dda9" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg><svg aria-hidden="true" role="img" id="rey-icon-arrow-classic-6a2798977ddbb" class="rey-icon rey-icon-arrow-classic " viewbox="0 0 16 16"><polygon fill="var(--icon-fill, currentColor)" points="8 0 6.6 1.4 12.2 7 0 7 0 9 12.2 9 6.6 14.6 8 16 16 8"></polygon></svg></span></button>
			</div>

			<div class="rey-mobileNav-main">
				<div class="menu-product-menu-new-container"><ul id="main-menu-mobile-ea0ecf9-sticky" class="rey-mainMenu rey-mainMenu-mobile --megamenu-support"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4661 o-id-13"><a href="https://www.haircycle.com/shop/"><span>Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-4715 o-id-104"><a href="https://www.haircycle.com/shop/hair-growth-products/"><span>Hair Growth Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
	<ul class="sub-menu">
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4614 o-id-3544"><a href="https://www.haircycle.com/product/help-hair-whey-protein/"><span>Help Hair Whey Protein</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4624 o-id-3541"><a href="https://www.haircycle.com/product/viviscal-professional/"><span>Viviscal Professional</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4607 o-id-3650"><a href="https://www.haircycle.com/product/elevai-enfinity-serum/"><span>ELEVAI Enfinity Serum</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4629 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4628 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4613 o-id-1306"><a href="https://www.haircycle.com/product/haircycle-texture-gel/"><span>HairCycle Texture Gel</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4615 o-id-3653"><a href="https://www.haircycle.com/product/intact-5-pre-shampoo/"><span>Intact 5 Pre-Shampoo</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4723 o-id-1341"><a href="https://www.haircycle.com/product/rodan-and-fields-lash-boost/"><span>Rodan + Fields</span></a></li>
	</ul>
</li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-4709 o-id-105"><a href="https://www.haircycle.com/shop/hair-body-supplements/"><span>Hair &amp; Body Supplements</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
	<ul class="sub-menu">
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4616 o-id-3543"><a href="https://www.haircycle.com/product/iodine/"><span>Iodine +</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4619 o-id-3542"><a href="https://www.haircycle.com/product/neuro-performance-plasmalogens/"><span>Neuro Performance Plasmalogens</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4620 o-id-3517"><a href="https://www.haircycle.com/product/nitric-oxiden-n-o/"><span>Nitric Oxide Premium Supplement 60 Caps</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7469 o-id-3536"><a href="https://www.haircycle.com/product/dim-sgs/"><span>Dim SGS+</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4618 o-id-3535"><a href="https://www.haircycle.com/product/methyl-factors/"><span>Methyl Factors</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4603 o-id-3508"><a href="https://www.haircycle.com/product/adk-5/"><span>ADK 5</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-7470 o-id-3510"><a href="https://www.haircycle.com/product/adk-10/"><span>ADK 10</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4617 o-id-3529"><a href="https://www.haircycle.com/product/melatonin-60mg-dfs/"><span>Melatonin 60mg (DFS)</span></a></li>
	</ul>
</li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children menu-item-4708 o-id-106"><a href="https://www.haircycle.com/shop/hair-transplant-products/"><span>Hair Transplant Products</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a>
	<ul class="sub-menu">
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4611 o-id-1314"><a href="https://www.haircycle.com/product/haircycle-post-surgical-gel/"><span>HairCycle Post Surgical Gel</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4622 o-id-1310"><a href="https://www.haircycle.com/product/post-biotin-spray/"><span>HairCycle Post Biotin Spray</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4608 o-id-1320"><a href="https://www.haircycle.com/product/hair-transplant-kit/"><span>Hair Transplant Kit</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4724 o-id-1316"><a href="https://www.haircycle.com/product/haircycle-basic-kit/"><span>HairCycle Basic Kit</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4612 o-id-1322"><a href="https://www.haircycle.com/product/haircycle-shampoo/"><span>HairCycle Shampoo</span></a></li>
		<li class="menu-item menu-item-type-post_type menu-item-object-product menu-item-4610 o-id-1327"><a href="https://www.haircycle.com/product/haircycle-conditioner/"><span>HairCycle Conditioner</span></a></li>
	</ul>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4798 o-id-13"><a href="https://www.haircycle.com/shop/"><span>Shop</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4659 o-id-1109 --is-mega --is-mega-gs --mega-full menu-item-has-children"><a href="https://www.haircycle.com/about-haircycle/"><span>Learn</span><i class="--submenu-indicator --submenu-indicator-arrow2"></i></a><div class="rey-mega-gs">		<div data-elementor-type="wp-post" data-elementor-id="1760" class="elementor elementor-1760" data-elementor-post-type="rey-global-sections" data-elementor-gstype="megamenu" data-page-el-selector="body.elementor-page-1760">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="e-con-top elementor-element elementor-element-fd002f4 e-flex e-con-boxed e-con e-parent" data-id="fd002f4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-80e29bf e-con-full e-flex e-con e-child" data-id="80e29bf" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-dab6af3 elementor-widget elementor-widget-heading" data-id="dab6af3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">About HairCycle</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-5b5bdf9 reyEl-menu--vertical reyEl-menu--cols-1 --icons-start elementor-widget elementor-widget-reycore-menu" data-id="5b5bdf9" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-menu.custom-items">
				<div class="elementor-widget-container">
					
		<div class="rey-element reyEl-menu">
			<div class="reyEl-menu-navWrapper"><ul class="reyEl-menu-nav rey-navEl --menuHover-"><li class="menu-item "><a class="" href="/about-haircycle/"><span>About Us</span></a></li><li class="menu-item "><a class="" href="/the-haircycle-science/"><span>The HairCycle Science</span></a></li><li class="menu-item "><a class="" href="/about-hair-loss/"><span>All About Hair Loss</span></a></li><li class="menu-item "><a class="" href="/haircycle-and-hair-transplant-surgery/"><span>HairCycle & Hair Transplant</span></a></li><li class="menu-item "><a class="" href="/dht-inhibitors/"><span>DHT Inhibitors</span></a></li><li class="menu-item "><a class="" href="https://www.haircycle.com/anagen-stimulators-effect-hair-loss/"><span>Anagen Stimulators</span></a></li></ul></div>		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1ef9c29 e-con-full e-flex e-con e-child" data-id="1ef9c29" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-8688b6d elementor-widget elementor-widget-heading" data-id="8688b6d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Customer Reviews</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-c82d84d elementor-widget elementor-widget-text-editor" data-id="c82d84d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<div class="u-toggle-text u-toggle-text-wrapper --collapsed" data-height="12"><div class="u-toggle-content">Every HairCycle customer undergoes a unique journey. Discover firsthand testimonials showcasing the diverse personal progress experienced by our valued clientele.</div><button class="btn u-toggle-btn" aria-label="Toggle" data-read-more="Read more" data-read-less="Less"></button></div>								</div>
				</div>
				<div class="elementor-element elementor-element-e73e0ba --btn-block--yes elementor-widget elementor-widget-button" data-id="e73e0ba" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/reviews/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-thumbs-up" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"></path></svg>			</span>
									<span class="elementor-button-text">Read Reviews</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f6b5b1d elementor-widget elementor-widget-heading" data-id="f6b5b1d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">F.A.Q</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-6c9a8e0 elementor-widget elementor-widget-text-editor" data-id="6c9a8e0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									Frequently asked questions about the HairCycle hair treatment products.								</div>
				</div>
				<div class="elementor-element elementor-element-462edca --btn-block--yes elementor-widget elementor-widget-button" data-id="462edca" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/frequently-asked-questions/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-question-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"></path></svg>			</span>
									<span class="elementor-button-text">Frequently Asked Questions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
				</div>
		</div></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4662 o-id-1400"><a href="https://www.haircycle.com/physicians-area/"><span>Professionals</span></a></li>
<li class="--separated menu-item menu-item-type-post_type menu-item-object-page menu-item-4658 o-id-90"><a href="https://www.haircycle.com/blog/"><span>Blog</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4660 o-id-1356"><a href="https://www.haircycle.com/contact/"><span>Contact</span></a></li>
</ul></div>			</div>

			<div class="rey-mobileNav-footer">
				
<a href="https://www.haircycle.com/my-account/" class="rey-mobileNav--footerItem">
	Connect to your account	<svg aria-hidden="true" role="img" id="rey-icon-user-6a2798978c590" class="rey-icon rey-icon-user " viewbox="0 0 24 24"><path d="M8.68220488,13 L5.8,13 C4.7,11.6 4,9.9 4,8 C4,3.6 7.6,0 12,0 C16.4,0 20,3.6 20,8 C20,9.9 19.3,11.6 18.2,13 L15.3177951,13 C16.9344907,11.9250785 18,10.0869708 18,8 C18,4.6862915 15.3137085,2 12,2 C8.6862915,2 6,4.6862915 6,8 C6,10.0869708 7.06550934,11.9250785 8.68220488,13 Z"></path><path d="M18,14 L6,14 C2.7,14 0,16.7 0,20 L0,23 C0,23.6 0.4,24 1,24 L23,24 C23.6,24 24,23.6 24,23 L24,20 C24,16.7 21.3,14 18,14 Z M22,22 L2,22 L2,20 C2,17.8 3.8,16 6,16 L18,16 C20.2,16 22,17.8 22,20 L22,22 Z" ></path></svg></a>

			</div>
		</div>

	</nav>

				</div>
				</div>
				<div class="elementor-element elementor-element-cf25762 elementor-widget__width-auto --has-button-yes --il--right elementor-hidden-mobile --inline-layout-ov --inline-mobile-icon elementor-widget elementor-widget-reycore-header-search" data-id="cf25762" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-search.default">
				<div class="elementor-widget-container">
					
<div class="rey-headerSearch rey-headerIcon js-rey-headerSearch  --tp-before --hit-before --tp-before --hit-before">

	<button class="btn rey-headerIcon-btn rey-headerSearch-toggle js-rey-headerSearch-toggle">

		
		<span class="__icon rey-headerIcon-icon" aria-hidden="true"><svg aria-hidden="true" role="img" id="rey-icon-search-6a2798978d9d2" class="rey-icon rey-icon-search icon-search" viewbox="0 0 24 24"><circle stroke="currentColor" stroke-width="2.2" fill="none" cx="11" cy="11" r="10"></circle>
			<path d="M20.0152578,17.8888876 L23.5507917,21.4244215 C24.1365782,22.010208 24.1365782,22.9599554 23.5507917,23.5457419 C22.9650053,24.1315283 22.0152578,24.1315283 21.4294714,23.5457419 L17.8939375,20.010208 C17.3081511,19.4244215 17.3081511,18.4746741 17.8939375,17.8888876 C18.4797239,17.3031012 19.4294714,17.3031012 20.0152578,17.8888876 Z" fill="currentColor" stroke="none"></path></svg> <svg data-abs="" data-transparent="" aria-hidden="true" role="img" id="rey-icon-close-6a2798978d9f2" class="rey-icon rey-icon-close icon-close" viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg></span>
		<span class="screen-reader-text">Search open</span>

	</button>
	<!-- .rey-headerSearch-toggle -->

</div>
				</div>
				</div>
				<div class="elementor-element elementor-element-f62c711 elementor-widget__width-auto elementor-widget elementor-widget-reycore-header-cart" data-id="f62c711" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-cart.default">
				<div class="elementor-widget-container">
					
<div class="rey-headerCart-wrapper rey-headerIcon  " data-rey-cart-count="0">
	<button  class="btn rey-headerIcon-btn rey-headerCart js-rey-headerCart">
        <span class="__icon rey-headerIcon-icon " aria-hidden="true"><svg aria-hidden="true" role="img" id="rey-icon-cart-6a2798978e872" class="rey-icon rey-icon-cart " viewbox="0 0 100 77"><g  stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
            <path d="M100,12.523 L24.5,12.523 L23.521,9.105 C20.574,-1.391 6.253,-3.204 0.8,6.338 C-1.482,10.334 4.513,13.759 6.796,9.763 C9.204,5.55 15.587,6.353 16.881,10.992 L31.69,62.739 C30.081,60.341 27.347,58.762 24.244,58.762 C19.295,58.762 15.283,62.774 15.283,67.719 C15.283,72.668 19.295,76.682 24.244,76.682 C29.193,76.682 33.202,72.668 33.202,67.719 C33.202,67.028 33.116,66.362 32.969,65.717 L46.828,65.717 L67.339,65.717 C67.184,66.375 67.093,67.061 67.093,67.772 C67.093,72.721 71.103,76.733 76.052,76.733 C81,76.733 85.012,72.721 85.012,67.772 C85.012,62.877 81.085,58.909 76.207,58.821 C76.168,58.821 76.131,58.809 76.085,58.809 L46.828,58.809 L37.745,58.809 L35.794,51.989 L96.453,42.583 L100,12.523 Z M90.212,36.565 L33.879,45.295 L26.476,19.425 L92.234,19.425 L90.212,36.565 Z"  fill="currentColor" fill-rule="nonzero"></path></g></svg></span>        <span class="rey-headerIcon-counter --bubble"><span class="__cart-count">0</span></span>
		<span class="screen-reader-text">Open cart</span>
	</button>
</div>
<!-- .rey-headerCart-wrapper -->
				</div>
				</div>
				<div class="elementor-element elementor-element-bbc6fb0 elementor-widget__width-auto elementor-widget-mobile__width-initial elementor-widget elementor-widget-reycore-header-account" data-id="bbc6fb0" data-element_type="widget" data-e-type="widget" data-widget_type="reycore-header-account.default">
				<div class="elementor-widget-container">
					
<div class="rey-headerAccount rey-headerIcon ">
    <button class="btn rey-headerIcon-btn js-rey-headerAccount rey-headerAccount-btn rey-headerAccount-btn--before --hit-before">

		<span class="screen-reader-text">ACCOUNT</span>

		<span class="rey-headerAccount-btnText rey-headerIcon-btnText">ACCOUNT</span><span class="__icon rey-headerIcon-icon" aria-hidden="true"><svg aria-hidden="true" role="img" id="rey-icon-user-6a2798978fcfc" class="rey-icon rey-icon-user rey-headerAccount-btnIcon" viewbox="0 0 24 24"><path d="M8.68220488,13 L5.8,13 C4.7,11.6 4,9.9 4,8 C4,3.6 7.6,0 12,0 C16.4,0 20,3.6 20,8 C20,9.9 19.3,11.6 18.2,13 L15.3177951,13 C16.9344907,11.9250785 18,10.0869708 18,8 C18,4.6862915 15.3137085,2 12,2 C8.6862915,2 6,4.6862915 6,8 C6,10.0869708 7.06550934,11.9250785 8.68220488,13 Z"></path><path d="M18,14 L6,14 C2.7,14 0,16.7 0,20 L0,23 C0,23.6 0.4,24 1,24 L23,24 C23.6,24 24,23.6 24,23 L24,20 C24,16.7 21.3,14 18,14 Z M22,22 L2,22 L2,20 C2,17.8 3.8,16 6,16 L18,16 C20.2,16 22,17.8 22,20 L22,22 Z" ></path></svg></span>
<span class="rey-headerAccount-count rey-headerIcon-counter --hidden --minimal">

	<span class="rey-wishlistCounter-number" data-count=""></span><svg data-transparent="" data-abs="" aria-hidden="true" role="img" id="rey-icon-close-6a2798979024d" class="rey-icon rey-icon-close __close-icon" viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg>
</span>
    </button>

</div>
<!-- .rey-headerAccount-wrapper -->
				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</div>
		<div data-layout="offcanvas" class="rey-accountPanel-wrapper --layout-offcanvas --invisible rey-sidePanel">
			<div class="rey-accountPanel">
				
<div class="rey-accountTabs">

	<div class="rey-accountTabs-item --active" data-item="account">
		<span>ACCOUNT</span>	</div>

	<div class="rey-accountTabs-item" data-item="wishlist">
		<span>Wishlist</span><span class="rey-wishlistCounter-number" data-count=""></span>	</div>

</div>

<div class="rey-accountWishlist-wrapper " data-account-tab="wishlist">
	<div class="rey-accountPanel-title">
		Wishlist<span class="rey-wishlistCounter-number" data-count=""></span>
	</div>
	<div class="rey-wishlistPanel-container" data-type="grid">
		<div class="rey-accountWishlist rey-wishlistPanel"></div>
		<div class="rey-lineLoader"></div>
	</div>
</div>

			<div class="rey-accountForms --active" data-redirect-type="load_menu" data-redirect-url=""  data-account-tab="account">
				
<div class="rey-accountPanel-form rey-loginForm --active">
	<div class="rey-accountPanel-title">Login</div>

	<form  class="woocommerce-form woocommerce-form-login js-rey-woocommerce-form-login login" method="post">

		
		<p class="rey-form-row rey-form-row--text ">
			<input type="text" class="rey-input rey-input--text" name="username" id="username" autocomplete="username" value="" required onInput="(function(e){e.target.closest('.rey-form-row').classList.toggle('--has-value',e.target.value)})(arguments[0]);" />			<label for="username" class="rey-label">Username or email address&nbsp;<span class="required">*</span></label>
		</p>

		<p class="rey-form-row rey-form-row--text">
			<input class="rey-input rey-input--text --suports-visibility" type="password" name="password" id="password" autocomplete="current-password" required onInput="(function(e){e.target.closest('.rey-form-row').classList.toggle('--has-value',e.target.value)})(arguments[0]);"/>
			<label for="password" class="rey-label">Password&nbsp;<span class="required">*</span></label>
		</p>

		
		<div class="rey-form-row rey-form-row--reset-mobile">
			<p class="col">
				<label class="rey-label rey-label--checkbox" for="rememberme">
					<input class="rey-input rey-input--checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever"  />
					<span></span>
					<span class="rey-label-text">Remember me</span>
				</label>
			</p>

			<p class="col text-right">
				<input type="hidden" id="woocommerce-login-nonce" name="woocommerce-login-nonce" value="525225f679" /><input type="hidden" name="_wp_http_referer" value="/?option=com_obrss&#038;task=feed&#038;id=1" />				<button type="submit" class="btn btn-line-active submit-btn" name="login" value="SIGN IN"  aria-label="SIGN IN">SIGN IN</button>
			</p>
		</div>

					<div class="rey-accountForms-notice"></div>

			<div class="rey-accountPanel-links rey-accountForms-links">
				<button class="btn btn-line" data-location="rey-registerForm">Create Account</button><button class="btn btn-line" data-location="rey-forgetForm">Forgot password</button>			</div>
		
		<input type="hidden" name="redirect_to" value="https://www.haircycle.com/?option=com_obrss&#038;task=feed&#038;id=1">
	</form>

</div>

		<div class="rey-accountPanel-form rey-registerForm ">
		<div class="rey-accountPanel-title">Create an account</div>
	
		<form   method="post" class="register woocommerce-form woocommerce-form-register js-rey-woocommerce-form-register"  >

			
			
			<p class="rey-form-row rey-form-row--text ">
				<label class="rey-label" for="reg_email">Email address&nbsp;<span class="required">*</span></label>
				<input type="email" class="rey-input rey-input--text" name="email" id="reg_email" autocomplete="email" value="" required pattern="[\w]{1,}[\w.+-]{0,}@[\w-]{2,}([.][a-zA-Z]{2,}|[.][\w-]{2,}[.][a-zA-Z]{2,})$" onInput="(function(e){e.target.closest('.rey-form-row').classList.toggle('--has-value',e.target.value)})(arguments[0]);" />			</p>

			
			<div class="rey-form-row rey-form-row--text --small-text">

									<p>A link to set a new password will be sent to your email address.</p>
				
			</div>

			<p class="form-row form-row-wide mailchimp-newsletter"><label for="mailchimp_woocommerce_newsletter" class="woocommerce-form__label woocommerce-form__label-for-checkbox inline"><input class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" id="mailchimp_woocommerce_newsletter" type="checkbox" name="mailchimp_woocommerce_newsletter" value="1" checked="checked"> <span>Subscribe to our newsletter</span></label></p><div class="clear"></div><wc-order-attribution-inputs></wc-order-attribution-inputs><div class="woocommerce-privacy-policy-text"><p>Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our <a href="" class="woocommerce-privacy-policy-link" target="_blank">privacy policy</a>.</p>
</div>
			<p class="">
				<input type="hidden" id="woocommerce-register-nonce" name="woocommerce-register-nonce" value="abdece9ebd" /><input type="hidden" name="_wp_http_referer" value="/?option=com_obrss&#038;task=feed&#038;id=1" />				<button type="submit" class="btn btn-line-active submit-btn" name="register" value="Register" aria-label="Register">CREATE ACCOUNT</button>
			</p>

							<div class="rey-accountForms-notice"></div>
				<div class="rey-accountPanel-links rey-accountForms-links">
					<button class="btn btn-line" data-location="rey-loginForm">Login</button><button class="btn btn-line" data-location="rey-forgetForm">Forgot password</button>				</div>
			
			
		</form>

		</div>
	

<div class="rey-accountPanel-form rey-forgetForm ">
	<div class="rey-accountPanel-title">Password Recovery</div>

	<form method="post" class="woocommerce-form woocommerce-form-forgot js-rey-woocommerce-form-forgot">

		<div class="woocommerce-form-forgot-formData">

			<p>Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.</p>
			<p class="rey-form-row rey-form-row--text ">
				<label class="rey-label" for="user_login">Username or email</label>
				<input class="rey-input rey-input--text" type="text" name="user_login" id="user_login" autocomplete="username" required value="" onInput="(function(e){e.target.closest('.rey-form-row').classList.toggle('--has-value',e.target.value)})(arguments[0]);" />
			</p>

			
			<p class="">
				<input type="hidden" name="wc_reset_password" value="true" />
				<button type="submit" class="btn btn-line-active submit-btn" value="Reset password"  aria-label="Reset password">Reset password</button>
			</p>

			<input type="hidden" id="woocommerce-lost-password-nonce" name="woocommerce-lost-password-nonce" value="f4c73cb026" /><input type="hidden" name="_wp_http_referer" value="/?option=com_obrss&#038;task=feed&#038;id=1" />
		</div>

					<div class="rey-accountForms-notice"></div>
			<div class="rey-accountPanel-links rey-accountForms-links">
				<button class="btn btn-line" data-location="rey-registerForm">Create Account</button><button class="btn btn-line" data-location="rey-loginForm">Login</button>			</div>
				</form>
</div>
			</div>

					</div>
		</div><a href="#scrolltotop" class="rey-scrollTop --style2 --pos-right" data-entrance="50" data-lazy-hidden><span class="rey-scrollTop-text">TOP</span><div class="rey-arrowSvg rey-arrowSvg--left " ><svg aria-hidden="true" role="img" id="rey-icon-chevron-6a279897d5a62" class="rey-icon rey-icon-chevron  " viewbox="0 0 40 64"><polygon fill="currentColor" points="39.5 32 6.83 64 0.5 57.38 26.76 32 0.5 6.62 6.83 0"></polygon></svg></div></a>
<div class="rey-cartPanel-wrapper rey-sidePanel js-rey-cartPanel woocommerce" data-lazy-hidden>

	
		<div class="rey-cartExtraProducts" id="rey-cart-extra-products" data-status="open">
			<button class="__toggle"><svg aria-hidden="true" role="img" id="rey-icon-chevron-6a279897d5e24" class="rey-icon rey-icon-chevron  " viewbox="0 0 40 64"><polygon fill="currentColor" points="39.5 32 6.83 64 0.5 57.38 26.76 32 0.5 6.62 6.83 0"></polygon></svg></button>
			<div class="__inner">
				<div class="__title">Newest Products:</div>
				<div class="__content">
					<div class="rey-lineLoader"></div>
				</div>
			</div>
		</div>

		<script type="text/html" id="tmpl-reyCartExtraProducts">
			<# if( data.items.length ){ #>
				<div class="__the-content">
					<# for (var i = 0; i < data.items.length; i++) { #>
					<div class="__product" data-id="{{data.items[i].id}}">
						<a href="{{data.items[i].link}}" class="__product-link">
							{{{data.items[i].image}}}
						</a>
						<# if( data.items[i].brand ){ #>
							<span class="__product-brand">{{{data.items[i].brand}}}</span>
						<# } #>
						<h4 class="__product-title"><a href="{{data.items[i].link}}">{{{data.items[i].title}}}</a></h4>
						<span class="__product-price">{{{data.items[i].price}}}</span>
					</div>
					<# } #>
				</div>
			<# } #>
		</script>

		
	<div class="rey-cartPanel --btns-inline">

		<div class="rey-cartPanel-header">

			<div class="__tabs">

				<div class="__tab --active" data-item="cart">
										<div class="rey-cartPanel-title">
						Shopping Cart						<span class="__cart-count">0</span>					</div>
				</div>

						<div class="__tab" data-item="recent">
			<div class="rey-cartPanel-title">
				RECENTLY VIEWED				<span class="__recent-count __nb">0</span>			</div>
		</div>
		
			</div>

		</div>

		<div class="__tab-content --active" data-item="cart">

			<div class="widget woocommerce widget_shopping_cart">
				<div class="widget_shopping_cart_content"></div>
			</div>

		</div>

				<div class="__tab-content rey-cartRecent-itemsWrapper --loading" data-item="recent">
			<div class="rey-lineLoader"></div>
		</div>
			</div>

	
</div>

		<script type="text/html" id="tmpl-reyCrossSellsBubble">

		<# var items = data.items; #>
		<# if( items.length ){ #>
		<div class="rey-crossSells-bubble --loading">

						<div class="rey-crossSells-bubble-title">You may also like&hellip;</div>
			
			
		<# for (var i = 0; i < items.length; i++) { #>
		<div class="rey-crossSells-item __cart-product " data-id="{{items[i].id}}">
			<div class="rey-crossSells-itemThumb">
				<a href="{{items[i].link}}" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">
					{{{items[i].image}}}
				</a>
			</div>
			<div class="rey-crossSells-itemContent">
								<h4 class="rey-crossSells-itemTitle"><a href="{{items[i].link}}">{{{items[i].title}}}</a></h4>
				<span class="price rey-loopPrice">{{{items[i].price}}}</span>
				<div class="rey-crossSells-itemButtons">
					{{{items[i].button}}}
					<# if(items[i].wishlist){ #> {{{items[i].wishlist}}} <# } #>				</div>
			</div>
		</div>
		<# } #>

		
			<div><a class="rey-crossSells-bubble-close btn btn-primary-outline btn--block" href="#">Continue shopping</a></div>

		</div>
		<# } #>

		</script>
<script type="text/html" id="tmpl-reyCartRecent">

<# var items = data.items; #>
<# if( items.length ){ #>
<div data-ss-container>
	<div class="rey-cartRecent-items">
		<# for (var i = 0; i < items.length; i++) { #>
		<div class="rey-cartRecent-item __cart-product" data-id="{{items[i].id}}">
			<div class="rey-cartRecent-itemThumb ">
				<a href="{{items[i].link}}" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">
					{{{items[i].image}}}
				</a>
			</div>
			<div class="rey-cartRecent-itemContent">
								<h4 class="rey-cartRecent-itemTitle"><a href="{{items[i].link}}">{{{items[i].title}}}</a></h4>
				<span class="price rey-loopPrice">{{{items[i].price}}}</span>
				<div class="rey-cartRecent-itemButtons">
					{{{items[i].button}}}
					<# if(items[i].wishlist){ #> {{{items[i].wishlist}}} <# } #>				</div>
			</div>
		</div>
		<# } #>
	</div>
</div>
<# } else { #>
	<p class="woocommerce-mini-cart__empty-message">No products in the list.</p><# } #>

</script>


		<aside class="rey-cookieNotice">
			<div class="rey-cookieNotice-text">
				In order to provide you a personalized shopping experience, our site uses cookies. By continuing to use this site, you are agreeing to our cookie policy.			</div>
			<a class="btn btn-primary-outline" href="#">ACCEPT</a>
		</aside>

		<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/sites/4/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/rey/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/e33ac7ab579ced8adbd6a274b/d19d8e20d8a3a2eba03a74355.js");</script>        <script type="text/javascript">
        window.mcPixel = window.mcPixel || {};
        window.mcPixel._handled = {};
        window.mcPixel.cartId = 't_39804a9e973a66ffd2a5165197b6e7';
                window.mcPixel.data = {"products":[{"id":"1310","productId":"1310","title":"Post Biotin Spray","price":15.75,"currency":"USD","sku":"HC-BS","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/Untitled-design-4.png","productUrl":"https://www.haircycle.com/product/post-biotin-spray/","vendor":"","categories":["Hair Transplant Products"]},{"id":"3544","productId":"3544","title":"Help Hair Whey Protein","price":59.950000000000003,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/protein-chocolate.png","productUrl":"https://www.haircycle.com/product/help-hair-whey-protein/","vendor":"","categories":["Hair Growth Products"]},{"id":"1322","productId":"1322","title":"HairCycle Shampoo for thinning hair","price":14.99,"currency":"USD","sku":"HC-SP","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-shampoo-3.png","productUrl":"https://www.haircycle.com/product/haircycle-shampoo/","vendor":"","categories":["Hair Growth Products","Hair Transplant Products"]},{"id":"1316","productId":"1316","title":"HairCycle Basic Kit","price":25,"currency":"USD","sku":"HC-BK","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-kit.png","productUrl":"https://www.haircycle.com/product/haircycle-basic-kit/","vendor":"","categories":["Hair Transplant Products"]},{"id":"1327","productId":"1327","title":"HairCycle Hair Loss Conditioner","price":14.99,"currency":"USD","sku":"HC-CN","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2013/11/haircycle-conditioner-1.png","productUrl":"https://www.haircycle.com/product/haircycle-conditioner/","vendor":"","categories":["Hair Growth Products","Hair Transplant Products"]},{"id":"3517","productId":"3517","title":"Nitric Oxide Premium Supplement 60 Caps","price":49.950000000000003,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NOTRIC-OXIDE.png","productUrl":"https://www.haircycle.com/product/nitric-oxiden-n-o/","vendor":"","categories":["Hair &amp; Body Supplements"]},{"id":"3542","productId":"3542","title":"Neuro Performance Plasmalogens","price":149,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/PRODROME.png","productUrl":"https://www.haircycle.com/product/neuro-performance-plasmalogens/","vendor":"","categories":["Hair &amp; Body Supplements"]},{"id":"1306","productId":"1306","title":"HairCycle Texture Gel","price":8.9900000000000002,"currency":"USD","sku":"HC-TG","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel.png","productUrl":"https://www.haircycle.com/product/haircycle-texture-gel/","vendor":"","categories":["Hair Growth Products"]},{"id":"5435","productId":"5435","title":"ProdromeGlia (Softgels)","price":74,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/prodrome.png","productUrl":"https://www.haircycle.com/product/prodromeglia-softgels/","vendor":"","categories":["Hair &amp; Body Supplements"]},{"id":"3529","productId":"3529","title":"Melatonin 60mg (DFS)","price":34.990000000000002,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/NS-MELATONIN-WRAP-FRONT_1500x1500.png","productUrl":"https://www.haircycle.com/product/melatonin-60mg-dfs/","vendor":"","categories":["Hair &amp; Body Supplements"]},{"id":"1314","productId":"1314","title":"HairCycle Post Surgical Gel","price":35,"currency":"USD","sku":"HC-SG","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2011/08/haircycle-texture-gel-1.png","productUrl":"https://www.haircycle.com/product/haircycle-post-surgical-gel/","vendor":"","categories":["Hair Transplant Products"]},{"id":"3650","productId":"3650","title":"ELEVAI Enfinity Serum","price":299,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/08/ENFINITY-1.jpg","productUrl":"https://www.haircycle.com/product/elevai-enfinity-serum/","vendor":"","categories":["Hair Growth Products"]},{"id":"3536","productId":"3536","title":"Dim SGS+","price":47,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/BIOTE-DIM-SGS-.png","productUrl":"https://www.haircycle.com/product/dim-sgs/","vendor":"","categories":["Hair &amp; Body Supplements"]},{"id":"4975","productId":"4975","title":"SureThik Fiber Holding Spray","price":12,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/11/HOLDING_SPRAY_BRIGHTER.webp","productUrl":"https://www.haircycle.com/product/surethik-fiber-holding-spray/","vendor":"","categories":["Hair Growth Products"]},{"id":"3535","productId":"3535","title":"Methyl Factors","price":45,"currency":"USD","sku":"","imageUrl":"https://www.haircycle.com/wp-content/uploads/sites/4/2024/07/methyl-factors.png","productUrl":"https://www.haircycle.com/product/methyl-factors/","vendor":"","categories":["Hair &amp; Body Supplements"]}]};
                </script>
        <div class="rey-wishlist-notice-wrapper" data-lazy-hidden><div class="rey-wishlist-notice"><span>Added to wishlist!</span> </div></div>	<script type='text/javascript'>
		(function () {
			var c = document.body.className;
			c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
			document.body.className = c;
		})();
	</script>
	
		<script type="text/html" id="tmpl-reyWishlistItem">
			<div class="rey-wishlist-list">
				<# for (var i = 0; i < data.num; i++) { #>
					<# var ttFixed = typeof data.fixedContainer !== "undefined" && data.fixedContainer ? "data-fx-tooltip" : ""; #>
					<div class="rey-wishlistItem" style="transition-delay: {{i * 0.07}}s ">
						<div class="rey-wishlistItem-thumbnail ">
							<a href="{{data.ob[i].url}}" class="rey-wishlistItem-thumbnailLink">{{{data.ob[i].image}}}</a>
							<# if( typeof data.ob[i].add_to_cart !== "undefined" ){ #><div class="rey-wishlistItem-atc --no-var-popup" data-rey-tooltip="{{data.ob[i].add_to_cart_text}}" data-rey-tooltip-source="wishlist-atc" {{{ttFixed}}}>{{{data.ob[i].add_to_cart}}}</div><# } #>							<a class="rey-wishlistItem-remove" data-rey-tooltip="Remove from wishlist" {{{ttFixed}}} data-rey-tooltip-source="wishlist"  href="#" data-id="{{data.ob[i].id}}" aria-label="Remove from wishlist"><svg aria-hidden="true" role="img" id="rey-icon-close-6a279897db781" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg></a>						</div>
						<div class="rey-wishlistItem-name">
							<a href="{{data.ob[i].url}}">{{data.ob[i].title}}</a>
							<# if(!data.grid){ #>
								<div class="rey-wishlistItem-price">{{{data.ob[i].price}}}</div>
							<# } #>
						</div>
						<# if(data.grid){ #>
							<div class="rey-wishlistItem-price">{{{data.ob[i].price}}}</div>
						<# } #>
						<# if( typeof data.ob[i].add_to_cart !== "undefined" ){ #><div class="rey-wishlistItem-atc --no-var-popup" data-rey-tooltip="{{data.ob[i].add_to_cart_text}}" data-rey-tooltip-source="wishlist-atc" {{{ttFixed}}}>{{{data.ob[i].add_to_cart}}}</div><# } #>						<a class="rey-wishlistItem-remove" data-rey-tooltip="Remove from wishlist" {{{ttFixed}}} data-rey-tooltip-source="wishlist"  href="#" data-id="{{data.ob[i].id}}" aria-label="Remove from wishlist"><svg aria-hidden="true" role="img" id="rey-icon-close-6a279897db781" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg></a>					</div>
				<# } #>
				<div class="rey-wishlistItem --placeholder" style="transition-delay: {{data.num * 0.07}}s ">
			</div>
		</script>

		
<div id="rey-searchPanel" class="rey-searchPanel rey-searchForm rey-searchAjax js-rey-ajaxSearch --hidden" data-style="wide">

	<div class="rey-searchPanel-inner">

		<form role="search" action="https://www.haircycle.com/" method="get">

			<label for="search-input-6a279897dbc4c">Search www.haircycle.com</label>
			<div class="rey-searchPanel-innerForm">

				<input type="search" name="s" placeholder="Seatch for product..." id="search-input-6a279897dbc4c" value="" />

				<div class="rey-headerSearch-actions">
					<label class="rey-searchForm-list rey-searchForm-cats" data-lazy-hidden><span>Category</span><select  name='product_cat' id='product_cat' class='rey-searchForm-catList'>
	<option value='' selected='selected'>Category</option>
	<option class="level-0" value="hair-body-supplements">Hair &amp; Body Supplements&nbsp;&nbsp;(9)</option>
	<option class="level-0" value="hair-growth-products">Hair Growth Products&nbsp;&nbsp;(10)</option>
	<option class="level-0" value="hair-transplant-products">Hair Transplant Products&nbsp;&nbsp;(6)</option>
	<option class="level-0" value="skincare">Skincare&nbsp;&nbsp;(2)</option>
</select>
</label><input type="hidden" name="post_type" value="product" />				</div>

			</div>
			
		</form>

		
		<div class="rey-searchResults js-rey-searchResults "></div>
		<div class="rey-lineLoader"></div>
		

	<nav class="rey-searchPanel__qlinks" aria-label="Search Menu" data-lazy-hidden>
		<div class="rey-searchPanel__qlinksTitle">Product Categories</div>	</nav><!-- .rey-searchPanel__qlinks -->
		<!-- .row -->
	</div>

</div>
	<div class="rey-searchPanel-wideOverlay rey-overlay --no-js-close" style="opacity:0;"></div>
<!-- .rey-searchPanel -->
<script type='text/javascript' id='reystyles-loaded'>
 window.reyStyles=[["rey-theme","rey-header","rey-logo","reycore-hbg-styles","rey-header-icon","rey-icon","rey-header-menu","reycore-header-abs-fixed","rey-splide-lite","reycore-module-cookie-notice","reycore-elementor-frontend","reycore-elementor-section-opt-rey","rey-hbg"],["rey-theme-ext","reycore-elementor-frontend-deferred","rey-wc-elementor","reycore-elementor-epro","reycore-fixedheader","reycore-elementor-section-deferred-opt","reycore-elementor-nav-styles","rey-overlay","rey-header-mobile-menu","reycore-module-mega-menu","reycore-elementor-container--rey","reycore-widget-menu-style","reycore-widget-menu-vertical","reycore-widget-menu-dropdown","reycore-widget-menu-title","rey-buttons","reycore-text-toggle","reycore-elementor-buttons-icon","reycore-elementor-buttons-block","reycore-close-arrow","rey-header-menu-submenus","rey-header-menu-indicators-arrow2","reycore-main-menu","reycore-header-search-top","reycore-header-search","rey-wc-header-mini-cart-top","rey-wc-header-account-panel-top","rey-wc-header-account-panel","rey-wc-header-wishlist","rey-wc-general","rey-wc-general-deferred","rey-wc-loop","reycore-widget-product-grid-style","rey-wc-general-deferred-font","reycore-loop-product-skin-proto","reycore-wishlist","reycore-tooltips","reycore-widget-hoverbox-distortion-style","reycore-widget-product-grid-carousel","rey-splide","reycore-elementor-sticky-gs","rey-header-drop-panel","rey-simple-scrollbar","reycore-pass-visibility","rey-form-row","reycore-side-panel","reycore-module-scrolltotop","reycore-module-minicart-extra-products"]]; 
</script><script type='text/javascript' id='reyscripts-loaded'>
 window.reyScripts=["rey-script","reycore-script","reycore-fixedheader","reycore-module-mega-menu","reycore-elementor-frontend","reycore-widget-menu-scripts","reycore-text-toggle","rey-mobile-menu-trigger","rey-main-menu","reycore-elementor-elem-header-navigation","reycore-sidepanel","reycore-header-search","reycore-woocommerce","reycore-wc-header-minicart","rey-drop-panel","reycore-wc-header-account-panel","rey-tmpl","reycore-wc-header-wishlist","reycore-tooltips","reycore-wishlist","reycore-widget-product-grid-scripts","reycore-wc-loop-grids","rey-splide","reycore-sticky-global-sections","rey-simple-scrollbar","reycore-wc-header-account-forms","reycore-module-scrolltotop","reycore-module-minicart-extra-products","reycore-module-cookie-notice","reycore-wc-header-ajax-search"]; 
</script><script type="text/javascript" id="rey-script-js-extra" data-noptimize="" data-no-optimize="1" data-no-defer="1" data-pagespeed-no-defer="">var reyParams = {"theme_js_params":{"menu_delays":true,"menu_hover_overlay":"show","menu_mobile_overlay":"show","menu_hover_timer":500,"menu_items_hover_timer":100,"menu_items_leave_timer":200,"menu_items_open_event":"hover","embed_responsive":{"src":"https://www.haircycle.com/wp-content/themes/rey/assets/css/components/embed-responsive/embed-responsive.css","elements":[".rey-postContent p \u003E iframe",".rey-wcPanel iframe[src*=\"youtu\"]",".woocommerce-Tabs-panel iframe[src*=\"youtu\"]",".woocommerce-product-details__short-description iframe[src*=\"youtu\"]"]},"menu_badges_styles":"https://www.haircycle.com/wp-content/themes/rey/assets/css/components/header-menu/menu-badges.css","header_height_on_first_interaction":true},"lazy_assets":{"a[href^='#offcanvas-']":{"styles":{"reycore-offcanvas-panels":"https://www.haircycle.com/wp-content/plugins/rey-core/inc/modules/offcanvas-panels/style.css","rey-simple-scrollbar":"https://www.haircycle.com/wp-content/plugins/rey-core/assets/css/lib/simple-scrollbar.css"},"scripts":{"reycore-offcanvas-panels":"https://www.haircycle.com/wp-content/plugins/rey-core/inc/modules/offcanvas-panels/script.js","animejs":"https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/lib/anime.min.js","rey-simple-scrollbar":"https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/lib/simple-scrollbar.js","reycore-elementor-frontend":"https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/elementor/general.js"}},"[data-reymodal],[data-rey-inline-modal]":{"styles":{"reycore-modals":"https://www.haircycle.com/wp-content/plugins/rey-core/assets/css/general-components/modals/modals.css"},"scripts":{"reycore-modals":"https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/general/c-modal.js"}}},"log_events":"","debug":"","ajaxurl":"https://www.haircycle.com/wp-admin/admin-ajax.php","ajax_nonce":"aa39ae2e73","preloader_timeout":"","v":"858db1b5843c","wpch":"1","delay_forced_js_event":"","delay_final_js_event":"","delay_js_dom_event":"","lazy_attribute":"data-lazy-stylesheet","core":{"js_params":{"sticky_debounce":200,"dir_aware":true,"panel_close_text":"Close Panel","refresh_forms_nonces":true},"v":"858db1b5843c","r_ajax_debug":false,"r_ajax_nonce":"b120787e71","r_ajax_url":"/?reycore-ajax=%%endpoint%%","ajax_queue":true},"check_for_empty":[".--check-empty",".rey-mobileNav-footer",".rey-postFooter"],"optimized_dom":"1","el_pushback_fallback":"","header_fix_elementor_zindex":"","woocommerce":"1","wc_ajax_url":"/?wc-ajax=%%endpoint%%","rest_url":"https://www.haircycle.com/wp-json/rey/v1","rest_nonce":"fea858f65c","catalog_cols":"3","catalog_mobile_cols":"2","added_to_cart_text":"ADDED TO CART","added_to_cart_text_timeout":"10000","cannot_update_cart":"Couldn't update cart!","site_id":"4","after_add_to_cart":"cart","ajax_add_review":"1","ajax_add_review_reload_text":"Reloading page...","ajax_add_review_await_approval_text":"Your review is awaiting approval","js_params":{"select2_overrides":true,"scattered_grid_max_items":7,"scattered_grid_custom_items":[],"product_item_slideshow_nav":"arrows","product_item_slideshow_disable_mobile":false,"product_item_slideshow_hover_delay":250,"scroll_top_after_variation_change":false,"scroll_top_after_variation_change_desktop":false,"ajax_search_letter_count":3,"ajax_search_allow_empty":false,"cart_update_threshold":1000,"cart_update_by_qty":true,"photoswipe_light":false,"customize_pdp_atc_text":true,"infinite_cache":true,"acc_animation":250,"acc_scroll_top":false,"acc_scroll_top_mobile_only":true,"force_qty_text_field":true},"currency_symbol":"$","price_format":"${{price}}","total_text":"Total:","price_thousand_separator":",","price_decimal_separator":".","price_decimal_precision":"2","header_cart_panel":{"apply_coupon_nonce":"d15ef27cea","remove_coupon_nonce":"8023ca7b48","cart_fragment_tweak":true,"close_text":"CLOSE"},"updateCatalogPriceSingleAttribute":"","updateCatalogStockSingleAttribute":"1","wishlist_after_add":"notice","wishlist_text_add":"Add to wishlist","wishlist_text_rm":"Remove from wishlist","wishlist_expire":"","wishlist_get_results":"","single_ajax_add_to_cart":"1","tabs_mobile_closed":"","qty_debounce":"50","search_texts":{"NO_RESULTS":"Sorry, but nothing matched your search terms. Please try again with some different keywords."},"ajax_search_only_title":"","ajax_search":"1","wishlist_type":"native","wishlist_empty_text":"Your Wishlist is currently empty.","module_extra_variation_images":"1","fixed_header_activation_point":"0","fixed_header_lazy":"3000","svg_icons_path":"https://www.haircycle.com?get_svg_icon=%%icon%%","svg_icons":{"close":"\u003Csvg role=\"img\" viewbox=\"0 0 110 110\" class=\"rey-icon rey-icon-close\"\u003E\u003Cg stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\" stroke-linecap=\"square\"\u003E\u003Cpath d=\"M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z\" stroke=\"currentColor\" stroke-width=\"var(--stroke-width, 12px)\"\u003E\u003C/path\u003E\u003Cpath d=\"M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z\" stroke=\"currentColor\" stroke-width=\"var(--stroke-width, 12px)\"\u003E\u003C/path\u003E\u003C/g\u003E\u003C/svg\u003E"},"checkout":{"error_text":"This information is required."}};</script><script type="text/javascript" id="reycore-elementor-frontend-js-extra" data-noptimize="" data-no-optimize="1" data-no-defer="1" data-pagespeed-no-defer="">var reyElementorFrontendParams = {"compatibilities":{"column_video":true,"video_bg_play_on_mobile":true},"ajax_url":"https://www.haircycle.com/wp-admin/admin-ajax.php","ajax_nonce":"9f2cf690b7"};</script><script type="text/template" id="tmpl-variation-template">

	<# if( data.variation.variation_description ){ #>
		<div class="woocommerce-variation-description">{{{ data.variation.variation_description }}}</div>
	<# } #>

	<# if( data.variation.price_html ){ #>
		<div class="woocommerce-variation-price">{{{ data.variation.price_html }}}</div>
	<# } #>

	<# if( data.variation.availability_html ){ #>
		<div class="woocommerce-variation-availability">{{{ data.variation.availability_html }}}</div>
	<# } #>
</script>

<script type="text/template" id="tmpl-unavailable-variation-template">
	<p>Sorry, this product is unavailable. Please choose a different combination.</p>
</script>
<link rel='stylesheet' id='wc-blocks-style-css' href='https://www.haircycle.com/wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css?ver=wc-10.7.0' media='all' />
<link rel='stylesheet' id='eael-4363-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/essential-addons-elementor/eael-4363.css?ver=1768892095' media='all' />
<link rel="stylesheet" onload="this.onload=null;this.media='all';" media="print"  data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-no-rel='stylesheet' id='elementor-post-4363-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-4363.css?ver=1780930311' data-media='all' />
<noscript><link rel='stylesheet' data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-id='elementor-post-4363-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-4363.css?ver=1780930311' data-media='all' />
</noscript><link rel="stylesheet" onload="this.onload=null;this.media='all';" media="print"  data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-no-rel='stylesheet' id='elementor-post-1760-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-1760.css?ver=1780930311' data-media='all' />
<noscript><link rel='stylesheet' data-noptimize="" data-no-optimize="1" data-pagespeed-no-defer="" data-pagespeed-no-transform="" data-minify="1" data-id='elementor-post-1760-css' href='https://www.haircycle.com/wp-content/uploads/sites/4/elementor/css/post-1760.css?ver=1780930311' data-media='all' />
</noscript><link rel='stylesheet' id='widget-image-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-icon-list-css' href='https://www.haircycle.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=4.0.9' media='all' />
<script id="essential-blocks-blocks-localize-js-extra">
var eb_conditional_localize = [];
var EssentialBlocksLocalize = {"eb_plugins_url":"https://www.haircycle.com/wp-content/plugins/essential-blocks/","image_url":"https://www.haircycle.com/wp-content/plugins/essential-blocks/assets/images","eb_wp_version":"7","eb_version":"6.1.3","eb_admin_url":"https://www.haircycle.com/wp-admin/","rest_rootURL":"https://www.haircycle.com/wp-json/","ajax_url":"https://www.haircycle.com/wp-admin/admin-ajax.php","nft_nonce":"1de9397d17","post_grid_pagination_nonce":"78741dc8b4","placeholder_image":"https://www.haircycle.com/wp-content/plugins/essential-blocks/assets/images/placeholder.png","is_pro_active":"false","upgrade_pro_url":"https://essential-blocks.com/upgrade","responsiveBreakpoints":{"tablet":1024,"mobile":767},"wp_timezone":"+00:00","gmt_offset":"0","wc_currency_symbol":"$"};
//# sourceURL=essential-blocks-blocks-localize-js-extra
</script>
<script id="essential-blocks-blocks-localize-js" src="https://www.haircycle.com/wp-content/plugins/essential-blocks/assets/js/eb-blocks-localize.js?ver=31d6cfe0d16ae931b73c"></script>
<script id="mailchimp-woocommerce-js-extra">
var mailchimp_public_data = {"site_url":"https://www.haircycle.com","ajax_url":"https://www.haircycle.com/wp-admin/admin-ajax.php","disable_carts":"","subscribers_only":"","language":"en","allowed_to_set_cookies":"1","sms_allowed_countries":["AU","AT","CA","FR","DE","IE","IT","ES","CH","NL","US","GB","AL","BE","HR","DK","EE","FO","FI","GI","GR","GG","IS","IM","JE","LV","LT","LU","MT","MD","NO","PL","PT","SM","SK","SI","SE"]};
//# sourceURL=mailchimp-woocommerce-js-extra
</script>
<script id="mailchimp-woocommerce-js" src="https://www.haircycle.com/wp-content/plugins/mailchimp-for-woocommerce/public/js/mailchimp-woocommerce-public.min.js?ver=6.1"></script>
<script id="mailchimp-woocommerce-pixel-tracking-js-extra">
var mcPixelConfig = {"restBase":"https://www.haircycle.com/wp-json/mailchimp-for-woocommerce/v1/"};
//# sourceURL=mailchimp-woocommerce-pixel-tracking-js-extra
</script>
<script id="mailchimp-woocommerce-pixel-tracking-js" src="https://www.haircycle.com/wp-content/plugins/mailchimp-for-woocommerce/public/js/mailchimp-woocommerce-pixel-tracking.js?ver=1.0.0"></script>
<script id="wp-hooks-js" src="https://www.haircycle.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script>
<script id="wp-polyfill-js" src="https://www.haircycle.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script>
<script id="mailchimp-woocommerce-pixel-tracking-blocks-js" src="https://www.haircycle.com/wp-content/plugins/mailchimp-for-woocommerce/blocks/build/pixel-tracking.js?ver=740c58b265909004380b"></script>
<script id="wccp_pro_admin_bar_ajax-js-extra">
var ajax_object = {"ajaxurl":"https://www.haircycle.com/wp-admin/admin-ajax.php","link":"https://www.haircycle.com/?option=com_obrss&task=feed&id=1"};
//# sourceURL=wccp_pro_admin_bar_ajax-js-extra
</script>
<script id="wccp_pro_admin_bar_ajax-js" src="https://www.haircycle.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=7.0"></script>
<script id="sourcebuster-js-js" src="https://www.haircycle.com/wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.min.js?ver=10.7.0"></script>
<script id="wc-order-attribution-js-extra">
var wc_order_attribution = {"params":{"lifetime":1.0000000000000001e-5,"session":30,"base64":false,"ajaxurl":"https://www.haircycle.com/wp-admin/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}};
//# sourceURL=wc-order-attribution-js-extra
</script>
<script id="wc-order-attribution-js" src="https://www.haircycle.com/wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.min.js?ver=10.7.0"></script>
<script id="eael-general-js-extra">
var localize = {"ajaxurl":"https://www.haircycle.com/wp-admin/admin-ajax.php","nonce":"a0db44bd32","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https://www.haircycle.com/","cart_redirectition":"no","cart_page_url":"https://www.haircycle.com/cart/","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"ParticleThemesData":{"default":"{\"particles\":{\"number\":{\"value\":160,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":true,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"repulse\"},\"onclick\":{\"enable\":true,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nasa":"{\"particles\":{\"number\":{\"value\":250,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":1,\"random\":true,\"anim\":{\"enable\":true,\"speed\":1,\"opacity_min\":0,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":4,\"size_min\":0.3,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":1,\"direction\":\"none\",\"random\":true,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":600}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":250,\"size\":0,\"duration\":2,\"opacity\":0,\"speed\":3},\"repulse\":{\"distance\":400,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","bubble":"{\"particles\":{\"number\":{\"value\":15,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#1b1e34\"},\"shape\":{\"type\":\"polygon\",\"stroke\":{\"width\":0,\"color\":\"#000\"},\"polygon\":{\"nb_sides\":6},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":50,\"random\":false,\"anim\":{\"enable\":true,\"speed\":10,\"size_min\":40,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":200,\"color\":\"#ffffff\",\"opacity\":1,\"width\":2},\"move\":{\"enable\":true,\"speed\":8,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":false,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","snow":"{\"particles\":{\"number\":{\"value\":450,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#fff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":500,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":2},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"bottom\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":0.5}},\"bubble\":{\"distance\":400,\"size\":4,\"duration\":0.3,\"opacity\":1,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nyan_cat":"{\"particles\":{\"number\":{\"value\":150,\"density\":{\"enable\":false,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"star\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"http://wiki.lexisnexis.com/academic/images/f/fb/Itunes_podcast_icon_300.jpg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":4,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":14,\"direction\":\"left\",\"random\":false,\"straight\":true,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":200,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}"},"eael_login_nonce":"ce25c73a09","eael_register_nonce":"a84eec9711","eael_lostpassword_nonce":"2f2da89e8a","eael_resetpassword_nonce":"be9a81c89b"};
//# sourceURL=eael-general-js-extra
</script>
<script id="eael-general-js" src="https://www.haircycle.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.6.5"></script>
<script id="eael-4041-js" src="https://www.haircycle.com/wp-content/uploads/sites/4/essential-addons-elementor/eael-4041.js?ver=1768892095"></script>
<script id="elementor-webpack-runtime-js" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.0.9"></script>
<script id="elementor-frontend-modules-js" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.0.9"></script>
<script id="jquery-ui-core-js" src="https://www.haircycle.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script>
<script id="elementor-frontend-js-extra">
var EAELImageMaskingConfig = {"svg_dir_url":"https://www.haircycle.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/img/image-masking/svg-shapes/"};
//# sourceURL=elementor-frontend-js-extra
</script>
<script id="elementor-frontend-js-before">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.0.9","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.haircycle.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.haircycle.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.haircycle.com\/wp-content\/uploads\/sites\/4"},"nonces":{"floatingButtonsClickTracking":"b5de1a1107","atomicFormsSendForm":"ebbe810fc8"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","woocommerce_notices_elements":[]},"post":{"id":4041,"title":"HairCycle%20%7C%20Hair%20Loss%20Products%20%26%20Hair%20Transplant%20Treatments","excerpt":"","featuredImage":false}};
//# sourceURL=elementor-frontend-js-before
</script>
<script id="elementor-frontend-js" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.0.9"></script>
<script id="swiper-js" src="https://www.haircycle.com/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js?ver=8.4.5"></script>
<script id="eael-4363-js" src="https://www.haircycle.com/wp-content/uploads/sites/4/essential-addons-elementor/eael-4363.js?ver=1768892095"></script>
<script id="wc-cart-fragments-js-extra">
var wc_cart_fragments_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_456977725ecb0390bfa351be7e63db88","fragment_name":"wc_fragments_456977725ecb0390bfa351be7e63db88","request_timeout":"5000"};
//# sourceURL=wc-cart-fragments-js-extra
</script>
<script data-wp-strategy="defer" defer id="wc-cart-fragments-js" src="https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/woocommerce/cart-fragments.js?ver=10.7.0"></script>
<script id="splidejs-js" defer src="https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/lib/splide.js?ver=4.1.2"></script>
<script id="mailchimp-woocommerce_gdpr-js" src="https://www.haircycle.com/wp-content/plugins/mailchimp-for-woocommerce/public/js/mailchimp-woocommerce-checkout-gdpr.min.js?ver=6.1"></script>
<script id="gla-gtag-events-js-extra">
var glaGtagData = {"currency_minor_unit":"2","products":{"1310":{"name":"Post Biotin Spray","price":15.75},"3544":{"name":"Help Hair Whey Protein","price":59.950000000000003},"1322":{"name":"HairCycle Shampoo for thinning hair","price":14.99},"1316":{"name":"HairCycle Basic Kit","price":25},"1327":{"name":"HairCycle Hair Loss Conditioner","price":14.99},"3517":{"name":"Nitric Oxide Premium Supplement 60 Caps","price":49.950000000000003},"3542":{"name":"Neuro Performance Plasmalogens","price":149},"1306":{"name":"HairCycle Texture Gel","price":8.9900000000000002},"5435":{"name":"ProdromeGlia (Softgels)","price":74},"3529":{"name":"Melatonin 60mg (DFS)","price":34.990000000000002},"1314":{"name":"HairCycle Post Surgical Gel","price":35},"3650":{"name":"ELEVAI Enfinity Serum","price":299},"3536":{"name":"Dim SGS+","price":47},"4975":{"name":"SureThik Fiber Holding Spray","price":12},"3535":{"name":"Methyl Factors","price":45}}};
//# sourceURL=gla-gtag-events-js-extra
</script>
<script id="gla-gtag-events-js" src="https://www.haircycle.com/wp-content/plugins/google-listings-and-ads/js/build/gtag-events.js?ver=6972d3af2e3be67de9f1"></script>
<script id="elementor-pro-webpack-runtime-js" src="https://www.haircycle.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=4.0.4"></script>
<script id="wp-i18n-js" src="https://www.haircycle.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="elementor-pro-frontend-js-before">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.haircycle.com\/wp-admin\/admin-ajax.php","nonce":"1ff378efcf","urls":{"assets":"https:\/\/www.haircycle.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.haircycle.com\/wp-json\/"},"settings":{"lazy_load_background_images":false},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"woocommerce":{"menu_cart":{"cart_page_url":"https:\/\/www.haircycle.com\/cart\/","checkout_page_url":"https:\/\/www.haircycle.com\/checkout\/","fragments_nonce":"a880a8111b"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.haircycle.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
//# sourceURL=elementor-pro-frontend-js-before
</script>
<script id="elementor-pro-frontend-js" src="https://www.haircycle.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=4.0.4"></script>
<script id="pro-elements-handlers-js" src="https://www.haircycle.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=4.0.4"></script>
<script id="rey-tmpl-js" src="https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/lib/c-rey-template.js?ver=3.1.10"></script>
<script id="wc-add-to-cart-variation-js-extra">
var wc_add_to_cart_variation_params = {"wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_make_a_selection_text":"Please select some product options before adding this product to your cart.","i18n_unavailable_text":"Sorry, this product is unavailable. Please choose a different combination.","i18n_reset_alert_text":"Your selection has been reset. Please select some product options before adding this product to your cart."};
//# sourceURL=wc-add-to-cart-variation-js-extra
</script>
<script data-wp-strategy="defer" defer id="wc-add-to-cart-variation-js" src="https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/woocommerce/add-to-cart-variation.js?ver=3.1.10"></script>
<script id="wc-single-product-js-extra">
var wc_single_product_params = {"i18n_required_rating_text":"Please select a rating","i18n_rating_options":["1 of 5 stars","2 of 5 stars","3 of 5 stars","4 of 5 stars","5 of 5 stars"],"i18n_product_gallery_trigger_text":"View full-screen image gallery","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"","zoom_options":[],"photoswipe_enabled":"","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":""};
//# sourceURL=wc-single-product-js-extra
</script>
<script data-wp-strategy="defer" defer id="wc-single-product-js" src="https://www.haircycle.com/wp-content/plugins/rey-core/assets/js/woocommerce/wc-single-product.js?ver=3.1.10"></script>
<div style="display:none !important" id="rey-svg-holder"><svg data-icon-id="close" aria-hidden="true" role="img" id="rey-icon-close-6a279897de5e2" class="rey-icon rey-icon-close " viewbox="0 0 110 110"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M4.79541854,4.29541854 L104.945498,104.445498 L4.79541854,4.29541854 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path><path d="M4.79541854,104.704581 L104.945498,4.55450209 L4.79541854,104.704581 Z" stroke="currentColor" stroke-width="var(--stroke-width, 12px)"></path></g></svg><svg data-icon-id="arrow-classic" aria-hidden="true" role="img" id="rey-icon-arrow-classic-6a279897de602" class="rey-icon rey-icon-arrow-classic " viewbox="0 0 16 16"><polygon fill="var(--icon-fill, currentColor)" points="8 0 6.6 1.4 12.2 7 0 7 0 9 12.2 9 6.6 14.6 8 16 16 8"></polygon></svg><svg data-icon-id="arrow-long" aria-hidden="true" role="img" id="rey-icon-arrow-long-6a279897de617" class="rey-icon rey-icon-arrow-long  --default" viewbox="0 0 50 8"><path d="M0.928904706,3.0387609 L44.0113745,3.0387609 L44.0113745,4.97541883 L0.928904706,4.97541883 C0.415884803,4.97541883 2.13162821e-14,4.54188318 2.13162821e-14,4.00708986 C2.13162821e-14,3.47229655 0.415884803,3.0387609 0.928904706,3.0387609 Z" class="rey-arrowSvg-dash" style="transform:var(--i-dsh-tr,initial);transition:var(--i-trs,initial);transform-origin:100% 50%;"></path><path d="M49.6399545,3.16320794 L45.1502484,0.129110528 C45.0056033,0.0532149593 44.8474869,0.0092610397 44.685796,3.99680289e-14 C44.5479741,0.0112891909 44.4144881,0.0554642381 44.2956561,0.129110528 C44.0242223,0.2506013 43.8503957,0.531340097 43.8559745,0.839218433 L43.8559745,6.90741326 C43.8503957,7.21529159 44.0242223,7.49603039 44.2956561,7.61752116 C44.5594727,7.77895738 44.8864318,7.77895738 45.1502484,7.61752116 L49.6399545,4.58342375 C49.8682741,4.42554586 50.0055358,4.15892769 50.0055358,3.87331584 C50.0055358,3.587704 49.8682741,3.32108583 49.6399545,3.16320794 Z"></path></svg></div><script type="text/html" id="tmpl-reySearchPanel">
	<div class="rey-searchItems">
	<# var items = data.items; #>
	<# for (var i = 0; i < items.length; i++) { #>
		<div class="rey-searchItem {{( items[i].default ? '--last' : '' )}}" style="transition-delay: {{i * 0.024}}s " data-id="{{items[i].id}}">
			<a href="{{items[i].permalink}}" class="{{( items[i].default ? 'btn btn-line-active' : '' )}}">
				<# if( items[i].default ) { #>
					{{{items[i].text}}}
					<# } else { #>
						<# if( ! data.only_title && items[i].img ) { #>
							<div class="rey-searchItem-thumbnail"><img src="{{items[i].img}}" alt="{{items[i].text}}"></div>
						<# } #>
						<div class="rey-searchItem-content">
														<div class="rey-searchItem-title">{{{items[i].text}}}</div>
							<# if( ! data.only_title && items[i].price ) { #>
								<div class="rey-searchItem-price">{{{items[i].price}}}</div>
							<# } #>
													</div>
				<# } #>
			</a>
		</div>
	<# } #>
	</div>
</script>
<script defer type="text/javascript" id="rey-combined-js" src="https://www.haircycle.com/wp-content/uploads/sites/4/rey/scripts-af5b9bbd9b.js?ver=3.1.10.1768891366"></script>
</body>
</html>
