

	

	<script>
		// Get Cookie
		var cookies = document.cookie.split("; ");
		var cookieIndex = cookies.findIndex((cookie) => cookie.includes("__cq_uuid="));
		var sfccExternalId = cookieIndex !== -1 ? cookies[cookieIndex].split("=")[1] : '';

		window.dataLayer = window.dataLayer || [];
		dataLayer.push({
			'sfccExternalId': sfccExternalId,
			'customerNo': 'cdtmqebGXu8aCujHGEIv515pBN',	
			'sha256Email' : '',
			'sha256Phone' : ''
		});
	</script>
	
	
	<!-- Google Tag Manager -->
	<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
	new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
	j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
	'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
	})(window,document,'script','dataLayer','GTM-WHVQPJR');</script>
	<!-- End Google Tag Manager -->

	
	
	
	
	

	
		
				
	
	
	
	
	
	<script>
		/**
		 * Create global variable in JS form
		 */
		var gtmSchema = {"PDP":{"data":{"event":"ecom.product.detail","currency":"USD","ecommerce":{"detail":{"products":[]}}},"keys":"ecommerce.detail.products","elem":".product-detail","targetData":"product"},"PLP":{"data":{"event":"ecom.product.list","currency":"USD","ecommerce":{"impressions":[]}},"keys":"ecommerce.impressions","elem":".product-grid","targetData":"product"},"AddToCart":{"data":{"event":"ecom.cart.add","currency":"USD","ecommerce":{"add":{"products":[]}}},"keys":"ecommerce.add.products","elem":null,"targetData":"product"},"Cart":{"data":{"event":"ecom.checkout.cart","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":1,"option":"Shopping Cart"},"products":[]}}},"keys":"ecommerce.checkout.products","elem":null,"targetData":"product"},"RemoveLineItemfromCart":{"data":{"event":"ecom.cart.remove","currency":"USD","ecommerce":{"remove":{"products":[]}}},"keys":"ecommerce.remove.products","elem":null,"targetData":"product"},"CartIncreaseQty":{"data":{"event":"ecom.cart.add","currency":"USD","ecommerce":{"add":{"products":[]}}},"keys":"ecommerce.add.products","elem":null,"targetData":"product"},"CartDecreaseQty":{"data":{"event":"ecom.cart.remove","currency":"USD","ecommerce":{"remove":{"products":[]}}},"keys":"ecommerce.remove.products","elem":null,"targetData":"product"},"CheckoutLogin":{"data":{"event":"ecom.checkout.login","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":2,"option":""}}}},"keys":"ecommerce.checkout.actionField","elem":null,"targetData":"string"},"Shipping":{"data":{"event":"ecom.checkout.shipping","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":3},"products":[]}}},"keys":"ecommerce.checkout.products","elem":null,"targetData":"product"},"ShippingOption":{"data":{"event":"ecom.checkout.shipping","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":3,"option":""},"products":[]}}},"keys":"ecommerce.checkout.products","elem":null,"targetData":"string"},"Payment":{"data":{"event":"ecom.checkout.payment","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":4},"products":[]}}},"keys":"ecommerce.checkout.products","elem":null,"targetData":"product"},"PaymentOption":{"data":{"event":"ecom.checkout.payment","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":4,"option":""}}}},"keys":"ecommerce.checkout.actionField","elem":null,"targetData":"string"},"OrderReview":{"data":{"event":"ecom.checkout.review","currency":"USD","ecommerce":{"checkout":{"actionField":{"step":5},"products":[]}}},"keys":"ecommerce.checkout.products","elem":null,"targetData":"product"},"OrderConfirmation":{"data":{"event":"ecom.checkout.purchase","currency":"USD","ecommerce":{"purchase":{"actionField":{},"products":[]}}},"keys":"ecommerce.purchase.products","elem":null,"targetData":"product"},"ProductClick":{"data":{"event":"ecom.product.click","currency":"USD","ecommerce":{"click":{"actionField":{"list":"Search Results"},"products":[]}}},"keys":"ecommerce.click.products","elem":null,"targetData":"product"}};
		
function productDetail(item) {
    var variation = [];
    var benefitStr = [];
    var productPrice;
    var details = {id: item.id, name: item.productName, brand: item.brand, category: item.categoryName, type: item.productType};
    if (item.collection && item.collection.value) {
        details.name = item.collection.value + " " + details.name;
        details.collection = item.collection.value;
    }
    if (item.price) {
        if (item.productType === "optionProduct" && "type" in item.price && item.price.type === "tiered" && "startingFromPrice" in item.price) {
            details.price = item.price.startingFromPrice.sales.value;
        }
        if ("sales" in item.price) {
            details.price = item.price.sales.value;
        }
        if (item.isBonusProductLineItem && item.priceTotal && item.priceTotal.nonAdjustedPrice !== "") {
            productPrice = item.priceTotal.nonAdjustedPrice;
            details.price = productPrice.substring(1) / item.quantity;
        }
    } else {
        if (item.priceTotal && item.priceTotal.price) {
            productPrice = item.priceTotal.price;
            details.price = productPrice.substring(1) / item.quantity;
        }
    }
    if (item.variationAttributes) {
        for (var k in item.variationAttributes) {
            var attribute = item.variationAttributes[k];
            var attrVal = "";
            if ("values" in attribute) {
                for (var i in attribute.values) {
                    var val = attribute.values[i];
                    if (val.selected) {
                        attrVal = val.displayValue;
                    }
                }
            }
            if ("displayValue" in attribute) {
                attrVal = attribute.displayValue;
            }
            var attr = attribute.displayName + ":" + attrVal;
            if (attrVal) {
                details.name = details.name + " - " + attrVal;
            }
            variation.push(attr);
        }
        if (variation.length > 0) {
            details.variant = variation.join("-");
        }
    }
    if (item.quantity) {
        details.quantity = item.quantity;
    }
    if (item.googleCategory) {
        details.googlecategory = item.googleCategory;
    }
    if (item.benefitArray) {
        item.benefitArray.forEach(function (benefit) {
            benefitStr.push(benefit.value);
        });
        benefitStr = benefitStr.join(",");
        details.benefit = benefitStr;
    }
    return details;
}

		
function getProperty(targetObj, keyPath) {
    var keys = keyPath.split(".");
    if (keys.length == 0) {
        return undefined;
    }
    keys = keys.reverse();
    var subObject = targetObj;
    while (keys.length) {
        var k = keys.pop();
        if (!subObject.hasOwnProperty(k)) {
            return undefined;
        }
        subObject = subObject[k];
    }
    return subObject;
}


		var gtmUrls = {
				productDetails: "/on/demandware.store/Sites-livingproof-sfra-Site/en_US/GTM-ProductDetails",
				searchDetails: "/on/demandware.store/Sites-livingproof-sfra-Site/en_US/GTM-SearchDetails",
			}
	</script>



<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WHVQPJR"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->





<!-- Include Page Designer Campaign Banner JavaScript and Styles only once here rather than at component level. -->
<!-- There should only be one Campagin Banner added on a PD page. Multiple Banners is unsupported at the moment. -->

<!DOCTYPE html>
<html lang="en">
<head>
<script>//common/scripts.isml</script>


    <!-- Pieeye Scripts Start -->
    
		<link rel="stylesheet" href="https://pieeyegpc.pii.ai/1/dsrp/60b271e3-e09f-4344-ad58-7ef415f81108/gpc.css"/>
<script src="https://pieeyegpc.pii.ai/1/dsrp/60b271e3-e09f-4344-ad58-7ef415f81108/gpc.min.js"></script>
    
    <!-- Pieeye Scripts End -->




<script>//common/scripts.isml</script>
<script defer type="text/javascript" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/js/main.js"></script>

    <script defer type="text/javascript" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/js/experience.js"
        
        >
    </script>

    <script defer type="text/javascript" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/js/experience/components/commerceAssets/mainBannerCustomHeader.js"
        
        >
    </script>

    <script defer type="text/javascript" src="https://js.braintreegateway.com/web/3.76.4/js/client.min.js"
        
        >
    </script>

    <script defer type="text/javascript" src="https://js.braintreegateway.com/web/3.76.4/js/data-collector.min.js"
        
        >
    </script>

    <script defer type="text/javascript" src="https://js.braintreegateway.com/web/3.76.4/js/paypal.min.js"
        
        >
    </script>

    <script defer type="text/javascript" src="https://js.braintreegateway.com/web/3.76.4/js/paypal-checkout.min.js"
        
        >
    </script>

    <script defer type="text/javascript" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/js/int_braintree.js"
        
        >
    </script>

    <script defer type="text/javascript" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/js/humanKind.js"
        
        >
    </script>







<script type="text/javascript" src="https://static.ordergroove.com/a3c3a8ae9aeb11e69a5ebc764e106cf4/main.js"></script>
<script type="text/javascript">
window.OrdergrooveTrackingUrl = "/on/demandware.store/Sites-livingproof-sfra-Site/en_US/OrderGroove-PurchasePostTracking"
</script>

<script type="text/javascript">
window.OrdergrooveLegacyOffers = false
window.autoShip = "false"
</script>


<meta charset=UTF-8>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">


  <title>Living Proof® | Hair Products &amp; Hair Care Online</title>

<meta name="description" content="For visibly healthier hair, discover hair products that are cruelty-free, paraben-free &amp; silicone-free. We are the science, you are the Living Proof&amp;reg; Living Proof."/>
<meta name="keywords" content="hair products online, hair care products online, buy hair products, buy hair care Living Proof"/>








    <!-- Start of living-proof Zendesk Widget script -->
<script id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?key=7ef430f2-26d0-4b9e-8f71-048b34c46c62"> </script>
<!-- End of living-proof Zendesk Widget script -->




    




  <script type="module" src="https://pub.loudcrowd.com/embed.js"></script>
  <script>
    function initLoudCrowd() {
      window.loudcrowd.init("aW50ZWdyYXRpb246ODcw");
    };
    if (window.loudcrowd) {
      initLoudCrowd();
    } else {
      document.addEventListener("loudcrowd-global-loaded", initLoudCrowd);
    }
  </script>







<link rel="icon" type="image/png" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw0eea71ec/images/lp-favicon.svg" sizes="196x196" />
<link rel="icon" type="image/png" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw0eea71ec/images/lp-favicon.svg" sizes="96x96" />
<link rel="icon" type="image/png" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw0eea71ec/images/lp-favicon.svg" sizes="32x32" />
<link rel="icon" type="image/png" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw0eea71ec/images/lp-favicon.svg" sizes="16x16" />
<link rel="icon" type="image/png" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw0eea71ec/images/lp-favicon.svg" sizes="128x128" />
<link rel="apple-touch-icon" type="image/svg" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dwfdd880f6/images/lp-favicon.png" sizes="180x180" />


<link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/catch.css" />







<link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/global.css" />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/experience/storePage.css"  />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/afterpaystyle.css"  />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/experience/components/commerceAssets/imageBanner.css"  />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/experience/components/commerceLayouts/layout.css"  />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/experience/components/commerceAssets/productTile.css"  />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/experience/components/commerceAssets/imageAndTextCommon.css"  />

    <link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/braintree.css"  />








<link rel="alternate" hreflang="en-US" href="https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US" />

<link rel="alternate" hreflang="en-GB" href="https://www.livingproof.com/on/demandware.store/Sites-livingproof-uk-sfra-Site/en_GB" />



<meta property="og:type" content="website" />

<meta property="og:title" content="Living Proof&reg; | Hair Products &amp; Hair Care Online" />

<meta property="og:locale" content="en_US" />

<meta property="twitter:card" content="summary_large_image" />

<meta property="og:description" content="For visibly healthier hair, discover hair products that are cruelty-free, paraben-free &amp; silicone-free. We are the science, you are the Living Proof&amp;reg; Living Proof." />





<link rel="stylesheet" href="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/css/skin/skin.css" />








		

    <script>
        var yotpoURL = 'https://staticw2.yotpo.com/' + '5VOwvLm9LXfPG4PnRdjiYOuHwG2XpFVaP0tOpDud' + '/widget.js';
        (function e() {
            var e = document.createElement("script");
                    e.type = "text/javascript",
                    e.async = true,
                    e.src = yotpoURL;
            var t = document.getElementsByTagName("script")[0];
            t.parentNode.insertBefore(e, t)
        })();
    </script>
    
        <script>
			(function e() {
				var e = document.createElement("script");
						e.type = "text/javascript",
						e.async = true,
						e.src = 'https://staticw2.yotpo.com/';
				var t = document.getElementsByTagName("script")[1];
				t.parentNode.insertBefore(e, t)
			})();
	    </script>
    
    
        <script>
			(function e() {
				var e = document.createElement("script");
						e.type = "text/javascript",
						e.async = true,
						e.src = '//cdn-loyalty.yotpo.com/loader/AFpjoLtzi4rOB3VNFWxA9g.js';
				var t = document.getElementsByTagName("script")[1];
				t.parentNode.insertBefore(e, t)
			})();
	    </script>
     




<script type="text/javascript">//<!--
/* <![CDATA[ (head-active_data.js) */
var dw = (window.dw || {});
dw.ac = {
    _analytics: null,
    _events: [],
    _category: "",
    _searchData: "",
    _anact: "",
    _anact_nohit_tag: "",
    _analytics_enabled: "true",
    _timeZone: "US/Eastern",
    _capture: function(configs) {
        if (Object.prototype.toString.call(configs) === "[object Array]") {
            configs.forEach(captureObject);
            return;
        }
        dw.ac._events.push(configs);
    },
	capture: function() { 
		dw.ac._capture(arguments);
		// send to CQ as well:
		if (window.CQuotient) {
			window.CQuotient.trackEventsFromAC(arguments);
		}
	},
    EV_PRD_SEARCHHIT: "searchhit",
    EV_PRD_DETAIL: "detail",
    EV_PRD_RECOMMENDATION: "recommendation",
    EV_PRD_SETPRODUCT: "setproduct",
    applyContext: function(context) {
        if (typeof context === "object" && context.hasOwnProperty("category")) {
        	dw.ac._category = context.category;
        }
        if (typeof context === "object" && context.hasOwnProperty("searchData")) {
        	dw.ac._searchData = context.searchData;
        }
    },
    setDWAnalytics: function(analytics) {
        dw.ac._analytics = analytics;
    },
    eventsIsEmpty: function() {
        return 0 == dw.ac._events.length;
    }
};
/* ]]> */
// -->
</script>
<script type="text/javascript">//<!--
/* <![CDATA[ (head-cquotient.js) */
var CQuotient = window.CQuotient = {};
CQuotient.clientId = 'bcmh-LivingProof';
CQuotient.realm = 'BCMH';
CQuotient.siteId = 'livingproof-sfra';
CQuotient.instanceType = 'prd';
CQuotient.locale = 'en_US';
CQuotient.fbPixelId = '__UNKNOWN__';
CQuotient.activities = [];
CQuotient.cqcid='';
CQuotient.cquid='';
CQuotient.cqeid='';
CQuotient.cqlid='';
CQuotient.apiHost='api.cquotient.com';
/* Turn this on to test against Staging Einstein */
/* CQuotient.useTest= true; */
CQuotient.useTest = ('true' === 'false');
CQuotient.initFromCookies = function () {
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
	  var c = ca[i];
	  while (c.charAt(0)==' ') c = c.substring(1,c.length);
	  if (c.indexOf('cqcid=') == 0) {
		CQuotient.cqcid=c.substring('cqcid='.length,c.length);
	  } else if (c.indexOf('cquid=') == 0) {
		  var value = c.substring('cquid='.length,c.length);
		  if (value) {
		  	var split_value = value.split("|", 3);
		  	if (split_value.length > 0) {
			  CQuotient.cquid=split_value[0];
		  	}
		  	if (split_value.length > 1) {
			  CQuotient.cqeid=split_value[1];
		  	}
		  	if (split_value.length > 2) {
			  CQuotient.cqlid=split_value[2];
		  	}
		  }
	  }
	}
}
CQuotient.getCQCookieId = function () {
	if(window.CQuotient.cqcid == '')
		window.CQuotient.initFromCookies();
	return window.CQuotient.cqcid;
};
CQuotient.getCQUserId = function () {
	if(window.CQuotient.cquid == '')
		window.CQuotient.initFromCookies();
	return window.CQuotient.cquid;
};
CQuotient.getCQHashedEmail = function () {
	if(window.CQuotient.cqeid == '')
		window.CQuotient.initFromCookies();
	return window.CQuotient.cqeid;
};
CQuotient.getCQHashedLogin = function () {
	if(window.CQuotient.cqlid == '')
		window.CQuotient.initFromCookies();
	return window.CQuotient.cqlid;
};
CQuotient.trackEventsFromAC = function (/* Object or Array */ events) {
try {
	if (Object.prototype.toString.call(events) === "[object Array]") {
		events.forEach(_trackASingleCQEvent);
	} else {
		CQuotient._trackASingleCQEvent(events);
	}
} catch(err) {}
};
CQuotient._trackASingleCQEvent = function ( /* Object */ event) {
	if (event && event.id) {
		if (event.type === dw.ac.EV_PRD_DETAIL) {
			CQuotient.trackViewProduct( {id:'', alt_id: event.id, type: 'raw_sku'} );
		} // not handling the other dw.ac.* events currently
	}
};
CQuotient.trackViewProduct = function(/* Object */ cqParamData){
	var cq_params = {};
	cq_params.cookieId = CQuotient.getCQCookieId();
	cq_params.userId = CQuotient.getCQUserId();
	cq_params.emailId = CQuotient.getCQHashedEmail();
	cq_params.loginId = CQuotient.getCQHashedLogin();
	cq_params.product = cqParamData.product;
	cq_params.realm = cqParamData.realm;
	cq_params.siteId = cqParamData.siteId;
	cq_params.instanceType = cqParamData.instanceType;
	cq_params.locale = CQuotient.locale;
	
	if(CQuotient.sendActivity) {
		CQuotient.sendActivity(CQuotient.clientId, 'viewProduct', cq_params);
	} else {
		CQuotient.activities.push({activityType: 'viewProduct', parameters: cq_params});
	}
};
/* ]]> */
// -->
</script>



</head>
<body class="is-sticky storepage" data-features="{&quot;enableFloatLabels&quot;:true,&quot;enableStickyHeader&quot;:true}">

<span class="catch-data catch-hidden" data-key="pLZcF7iSs7kMG424ZWMpSB5b"></span>



<div class="page" data-action="null" data-querystring="null" data-features="{&quot;enableFloatLabels&quot;:true,&quot;enableStickyHeader&quot;:true}">





<header class="header">
    <a href="#site-main" class="skip" aria-label="Skip to main content">Skip to main content</a>
<a href="#footercontent" class="skip" aria-label="Skip to footer content">Skip to footer content</a>
    <div class="header-top navbar-header container-fluid">
        <div class="row">
            <div class="header-top-inner col-12 px-5 px-md-3 header-slot text-center" style="background-color: #1B5881; 
                       color: #fff;">
                
	 


	<div class="html-slot-container">
    
        
            <div class="header-promotion font-size-12"  style="color:inherit">
	<p><a href="https://www.livingproof.com/proofie-perks.html">Sign up for loyalty and earn points on every order.</a></p>	
	<p>Enjoy free shipping on all $50+ orders.</p>
</div>
        
    
</div>
 
	
            </div>
        </div>
        <button class="unstyle-btn close-header-slot" role="button" data-target="header-slot"><img src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw3f1836f5/images/icon-close.svg" alt="Close" aria-label="Close"></button>
    </div>
    <div class="header-main">
        <div class="header-main-wrap container px-2 px-lg-3">
            <div class="row">
                <nav class="header-main-inner col-12 p-0">
                    <div class="header-main-left">
                        <button class="navbar-toggler d-lg-none" type="button" aria-controls="sg-navbar-collapse" aria-expanded="false" aria-label="Toggle navigation">
                            <svg version="1.1" class='menu-icon' xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                                viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
                                <g id="Layer_9">
                                    <g>
                                        <rect x="5.3" y="14" class="icon-path" width="29.3" height="2"/>
                                        <rect x="5.3" y="24.3" class="icon-path" width="29.3" height="2"/>
                                    </g>
                                </g>
                            </svg>
                        </button>
                        
                        <div class="main-menu navbar-toggleable-md menu-toggleable-left multilevel-dropdown d-none d-lg-block" id="sg-navbar-collapse">
                            



<div class="main-menu-inner">
    
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="c6a7c023491862d0df0d460c8f" -->
        <a href="https://www.livingproof.com/quiz.html" class="d-flex align-items-center background-color-accent-purple p-2 pr-5 no-decoration">
    <span class="avatar-image">
        <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw3a421ac7/images/circle-avatar.png" class="pull-left" alt="image" />
    </span>
    <span class="text-color-grey8 ml-3">
        <div class="w-100 font-size-12 text-uppercase font-weight-400">Know your hair</div>
        <div class="w-100 font-size-16">Take the quiz<i class="fa fa-angle-right font-size-18 ml-2"></i></div>
    </span>
</a>
    </div> <!-- End content-asset -->




    <nav class="navbar navbar-expand-lg bg-inverse col-12">
        <div class="close-menu clearfix d-lg-none">
            <div class="back pull-left">
                <button class="d-flex align-items-center justify-content-between p-0 pb-md-3" role="button" aria-label="Back to previous menu">
                    <span class="icon mr-2"><i class="fa fa-angle-left"></i></span>
                    <span class="text">Back</span>
                </button>
            </div>
            <div class="close-button pull-right">
                <button role="button" aria-label="Close Menu">
                    <span class="visually-hidden">Close</span>
                    <span aria-hidden="true"><img src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw3f1836f5/images/icon-close.svg" alt="Close"></span>
                </button>
            </div>
        </div>
        <div class="menu-group">
            <ul class="nav navbar-nav" role="menubar">
                
                    
                        
                            
                            
                            
                            <li class="nav-item dropdown mega-nav" role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                                <a href="/shop/" id="shop" class="nav-link dropdown-toggle" role="button" aria-labelledby="Shop" data-toggle="dropdown">
                                    <span class=" ">Shop</span>
                                    
                                </a>
                                
                                



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="shop">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item dropdown " role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                    <a href="/shop/shop-by-product-type/" id="shop-by-product-type" class="dropdown-link dropdown-toggle no-decoration" role="button" data-toggle="dropdown" aria-labelledby="Shop By Product Type">
                        <span class=" ">Shop By Product Type</span>
                        
                    </a>
                    

                    
                        



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="shop-by-product-type">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/shampoos-and-conditioners/" id="shampoos-conditioners" class="dropdown-link no-decoration" aria-labelledby="Shampoos and Conditioners">
                        <span class=" ">Shampoos and Conditioners</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/dry-shampoo/" id="shop-by-product-type-dry-shampoo" class="dropdown-link no-decoration" aria-labelledby="Dry Shampoo">
                        <span class=" ">Dry Shampoo</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/treatments/" id="shop-by-product-type-treatments" class="dropdown-link no-decoration" aria-labelledby="Treatments">
                        <span class=" ">Treatments</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/stylers/" id="shop-by-product-type-stylers" class="dropdown-link no-decoration" aria-labelledby="Stylers">
                        <span class=" ">Stylers</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/hairspray/" id="shop-by-product-type-hairspray" class="dropdown-link no-decoration" aria-labelledby="Hairspray">
                        <span class=" ">Hairspray</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/heat-protectants/" id="shop-by-product-type-heat-protectants" class="dropdown-link no-decoration" aria-labelledby="Heat Protectants">
                        <span class=" ">Heat Protectants</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-product-type/masks/" id="shop-by-product-type-masks" class="dropdown-link no-decoration" aria-labelledby="Masks">
                        <span class=" ">Masks</span>
                        
                    </a>
                </li>
            
        
    </div>
</ul>

                    

                </li>
            
        
            
            
            
                <li class="dropdown-item dropdown " role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                    <a href="/shop/shop-by-benefit/" id="shop-by-benefit" class="dropdown-link dropdown-toggle no-decoration" role="button" data-toggle="dropdown" aria-labelledby="Shop By Benefit">
                        <span class=" ">Shop By Benefit</span>
                        
                    </a>
                    

                    
                        



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="shop-by-benefit">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/anti-frizz/" id="shop-by-benefit-antifrizz" class="dropdown-link no-decoration" aria-labelledby="Anti-Frizz">
                        <span class=" ">Anti-Frizz</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/volume-and-fullness/" id="shop-by-benefit-volume-fullness" class="dropdown-link no-decoration" aria-labelledby="Volume + Fullness">
                        <span class=" ">Volume + Fullness</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/strength-and-repair/" id="shop-by-benefit-strength-repair" class="dropdown-link no-decoration" aria-labelledby="Strength + Repair">
                        <span class=" ">Strength + Repair</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/dry-styling/" id="shop-by-benefit-dry-styling" class="dropdown-link no-decoration" aria-labelledby="Dry Styling">
                        <span class=" ">Dry Styling</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/multi-tasking/" id="shop-by-benefit-multitasking" class="dropdown-link no-decoration" aria-labelledby="Multi-tasking">
                        <span class=" ">Multi-tasking</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/hold/" id="shop-by-benefit-hold" class="dropdown-link no-decoration" aria-labelledby="Hold">
                        <span class=" ">Hold</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-benefit/air-drying/" id="shop-by-benefit-air-drying" class="dropdown-link no-decoration" aria-labelledby="Air Drying">
                        <span class=" ">Air Drying</span>
                        
                    </a>
                </li>
            
        
    </div>
</ul>

                    

                </li>
            
        
            
            
            
                <li class="dropdown-item dropdown hasContent" role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                    <a href="/shop/shop-by-collection/" id="shop-by-collection" class="dropdown-link dropdown-toggle no-decoration" role="button" data-toggle="dropdown" aria-labelledby="Shop By Collection">
                        <span class=" ">Shop By Collection</span>
                        
                    </a>
                    

                    
                        
                        <div class="d-none d-lg-block menu-content">
                            
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="afad6c536128d5807aa16a6e73" -->
        <div class="collection-tiles">
    <a href="https://www.livingproof.com/shop/shop-by-collection/perfect-hair-day/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw8f956906/images/megamenu/flyoutNav-PhD_new.jpg" alt="Perfect hair Day" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Perfect hair Day™</span>
            <span class="collection-description">Lasting hydration, enhanced shine.</span>
        </div>
    </a>
<a href="https://www.livingproof.com/shop/shop-by-collection/curl/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwb6cc55c6/images/megamenu/flyoutNav-Curl_new.jpg" alt="Curl" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Curl</span>
            <span class="collection-description">Unleash your curl power.</span>
        </div>
    </a>
<a href="https://www.livingproof.com/shop/shop-by-collection/full/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw3889927e/images/megamenu/flyoutNav-Full_new.jpg" alt="Full" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Full</span>
            <span class="collection-description">Transform fine, flat hair.</span>
        </div>
    </a>
<a href="https://www.livingproof.com/shop/shop-by-collection/frizz/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw39540833/images/megamenu/flyoutNav-noFrizz_new.jpg" alt="No Frizz" />
        </div>
        <div class="collection-info">
            <span class="collection-name"><strike>frizz</strike>®</span>
            <span class="collection-description">Stop frizz before it starts.</span>
        </div>
    </a>
<a href="https://www.livingproof.com/shop/shop-by-collection/restore/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw6f2165d4/images/megamenu/flyoutNav-Restore_new.jpg" alt="Restore" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Restore</span>
            <span class="collection-description">Repair hair, reverse damage.</span>
        </div>
    </a>
<a href="https://www.livingproof.com/shop/shop-by-collection/scalp-care/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw5b4f821f/images/megamenu/flyoutNav-ScalpCare2.jpg" alt="Scalp Care" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Scalp Care</span>
            <span class="collection-description">Your scalp is special. Treat it that way.</span>
        </div>
    </a>
<a href="https://www.livingproof.com/shop/shop-by-collection/style-lab/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw80d8a8e0/images/megamenu/flyoutNav-StyleLab.jpg" alt="Style Lab" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Style Lab®</span>
            <span class="collection-description">Stay put, not stiff.</span>
        </div>
    </a>

<a href="https://www.livingproof.com/shop/shop-by-collection/essential-treatments/" class="collection-tile">
        <div class="collection-image">
            <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwb17d926c/images/megamenu/flyoutNav_ET.jpg" alt="Essential Treatments" />
        </div>
        <div class="collection-info">
            <span class="collection-name">Essential Treatments</span>
            <span class="collection-description">Reset, renew + protect all hair types.</span>
        </div>
    </a>





</div>
    </div> <!-- End content-asset -->



                        </div>
                        



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="shop-by-collection">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/perfect-hair-day/" id="shop-by-collection-perfect-hair-day" class="dropdown-link no-decoration" aria-labelledby="Perfect hair Day">
                        <span class=" ">Perfect hair Day</span>
                        
                            <sup><span class="trademarkSymbol" >TM</span></sup>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/curl/" id="shop-by-collection-curl" class="dropdown-link no-decoration" aria-labelledby="Curl">
                        <span class=" ">Curl</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/full/" id="shop-by-collection-full" class="dropdown-link no-decoration" aria-labelledby="Full">
                        <span class=" ">Full</span>
                        
                    </a>
                </li>
            
        
            
            
                
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/frizz/" id="shop-by-collection-no-frizz" class="dropdown-link no-decoration" aria-labelledby="frizz">
                        <span class="strikethrough">frizz</span>
                        
                            <sup><span class="registeredSymbol">&reg;</span></sup>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/restore/" id="shop-by-collection-restore" class="dropdown-link no-decoration" aria-labelledby="Restore">
                        <span class=" ">Restore</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/style-lab/" id="shop-by-collection-style-lab" class="dropdown-link no-decoration" aria-labelledby="Style Lab">
                        <span class=" ">Style Lab</span>
                        
                            <sup><span class="registeredSymbol">&reg;</span></sup>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/scalp-care/" id="shop-by-collection-scalp-care" class="dropdown-link no-decoration" aria-labelledby="Scalp Care">
                        <span class=" ">Scalp Care</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/shop-by-collection/essential-treatments/" id="shop-by-collection-essential-treatments" class="dropdown-link no-decoration" aria-labelledby="Essential Treatments">
                        <span class=" ">Essential Treatments</span>
                        
                    </a>
                </li>
            
        
    </div>
</ul>

                    

                </li>
            
        
            
            
            
                <li class="dropdown-item dropdown " role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                    <a href="/shop/more-ways-to-shop/" id="more-ways-to-shop" class="dropdown-link dropdown-toggle no-decoration" role="button" data-toggle="dropdown" aria-labelledby="More Ways To Shop">
                        <span class=" ">More Ways To Shop</span>
                        
                    </a>
                    

                    
                        



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="more-ways-to-shop">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/shop-all-products/" id="more-ways-to-shop-all-products" class="dropdown-link no-decoration" aria-labelledby="Shop All Products">
                        <span class=" ">Shop All Products</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/new-products/" id="more-ways-to-shop-new-products" class="dropdown-link no-decoration" aria-labelledby="New Products">
                        <span class=" ">New Products</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/best-sellers/" id="more-ways-to-shop-best-sellers" class="dropdown-link no-decoration" aria-labelledby="Best Sellers">
                        <span class=" ">Best Sellers</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/award-winners/" id="more-ways-to-shop-award-winners" class="dropdown-link no-decoration" aria-labelledby="Award Winners">
                        <span class=" ">Award Winners</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/vegan-products/" id="more-ways-to-shop-vegan" class="dropdown-link no-decoration" aria-labelledby="Vegan Products">
                        <span class=" ">Vegan Products</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/jumbo-sizes/" id="more-ways-to-shop-jumbo-sizes" class="dropdown-link no-decoration" aria-labelledby="Jumbo Sizes">
                        <span class=" ">Jumbo Sizes</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/refill-pouches/" id="more-ways-to-shop-refill-pouches" class="dropdown-link no-decoration" aria-labelledby="Refill Pouches">
                        <span class=" ">Refill Pouches</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/travel-sizes/" id="more-ways-to-shop-travel-sizes" class="dropdown-link no-decoration" aria-labelledby="Travel Sizes">
                        <span class=" ">Travel Sizes</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/shop/more-ways-to-shop/kits/" id="more-ways-to-shop-travel-kits" class="dropdown-link no-decoration" aria-labelledby="Kits">
                        <span class=" ">Kits</span>
                        
                    </a>
                </li>
            
        
    </div>
</ul>

                    

                </li>
            
        
    </div>
</ul>

                            </li>
                        
                    
                        
                            <li class="nav-item" role="none" tabindex="1">
                                <a href="/haircare-quiz/" id="quiz-recommendations" class="nav-link" role="link" tabindex="0">
                                    <span class=" ">Haircare Quiz</span>
                                    
                                </a>
                            </li>
                        
                    
                        
                            <li class="nav-item" role="none" tabindex="1">
                                <a href="/hair-101/" id="hair101" class="nav-link" role="link" tabindex="0">
                                    <span class=" ">Hair 101</span>
                                    
                                </a>
                            </li>
                        
                    
                        
                            
                            
                            
                            <li class="nav-item dropdown mega-nav" role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                                <a href="/pros/" id="pros" class="nav-link dropdown-toggle" role="button" aria-labelledby="Pros" data-toggle="dropdown">
                                    <span class=" ">Pros</span>
                                    
                                </a>
                                
                                



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="pros">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/pros/pro-account-signup/" id="pro-account-signup" class="dropdown-link no-decoration" aria-labelledby="Pro Account Signup">
                        <span class=" ">Pro Account Signup</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/pros/new-salon-inquiry/" id="new-salon-inquiry" class="dropdown-link no-decoration" aria-labelledby="New Salon Inquiry">
                        <span class=" ">New Salon Inquiry</span>
                        
                    </a>
                </li>
            
        
    </div>
</ul>

                            </li>
                        
                    
                        
                            <li class="nav-item" role="none" tabindex="1">
                                <a href="/affiliate-program/" id="the-proof-society" class="nav-link" role="link" tabindex="0">
                                    <span class=" ">Affiliate Program</span>
                                    
                                </a>
                            </li>
                        
                    
                        
                            
                            
                            
                            <li class="nav-item dropdown mega-nav" role="none" tabindex="0" aria-haspopup="true" aria-expanded="false">
                                <a href="https://www.livingproof.com/our-story.html" id="about-us" class="nav-link dropdown-toggle" role="button" aria-labelledby="About Us" data-toggle="dropdown">
                                    <span class=" ">About Us</span>
                                    
                                </a>
                                
                                



<ul class="dropdown-menu p-0 mb-md-3" aria-labelledby="productsButton" role="menu" aria-label="about-us">
    <div class="dropdown-menu-container container d-lg-flex">
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/about-us/our-story/" id="our-story" class="dropdown-link no-decoration" aria-labelledby="Our Story">
                        <span class=" ">Our Story</span>
                        
                    </a>
                </li>
            
        
            
            
            
                <li class="dropdown-item" role="none" tabindex="1">
                    <a href="/about-us/our-science/" id="our-science" class="dropdown-link no-decoration" aria-labelledby="Our Science">
                        <span class=" ">Our Science</span>
                        
                    </a>
                </li>
            
        
    </div>
</ul>

                            </li>
                        
                    
                
                
    <li class="nav-item d-lg-none nav-item-account" role="menuitem">
        <a href="https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US/Login-Show" class="nav-link">
            <path class="icon-path" d="M31.1,32c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1c0-5.1-4.1-9.2-9.2-9.2c-5.1,0-9.2,4.1-9.2,9.2c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1
                c0-6.1,5-11.1,11.1-11.1C26.1,21,31.1,25.9,31.1,32z M20,20.3c-3.7,0-6.7-3-6.7-6.7c0-3.7,3-6.7,6.7-6.7c3.7,0,6.7,3,6.7,6.7
                C26.7,17.3,23.7,20.3,20,20.3z M20,18.4c2.6,0,4.8-2.1,4.8-4.8S22.6,8.9,20,8.9c-2.6,0-4.8,2.1-4.8,4.8S17.4,18.4,20,18.4z"/>
            </svg>
            <span class="user-message">Login / Create Account</span>
        </a>
    </li>


            </ul>
        </div>
    </nav>
    <div class="mobile-bottom-content">
        
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="ae8ea0fa2da37e912a83ceb5a8" -->
        <div class="mobile-menu-bottom background-color-grey1">
<div class="col-12 p-0">
    <ul class="mobile-menu-links px-3">
        <li><a href="https://www.livingproof.com/orders" class="no-decoration">Order Status</a></li>
        <li><a href="https://www.livingproof.com/cart" class="no-decoration">My Shopping Bag</a></li>
        <!--<li><a href="#" class="no-decoration">About Us</a></li>-->
        <li><a href="https://www.livingproof.com/faq.html" class="no-decoration">Customer Care / FAQ</a></li>
    </ul>
</div>
</div>
    </div> <!-- End content-asset -->



    </div>
</div>
                        </div>
                    </div>
                    <div class="brand">
                        <a class="logo-home" href="/home" title="Living Proof Home">
                            
                            <svg class="logo-path" viewBox="0 0 237 44" fill="none" xmlns="http://www.w3.org/2000/svg">
                                <path class="logo-path" d="M234.014 6.35647C232.666 6.35647 230.987 5.64844 230.987 3.46634C230.987 1.60252 232.322 0.531578 233.998 0.531578C235.456 0.531578 237 1.33673 237 3.46634C237 5.31566 235.693 6.35647 234.014 6.35647ZM234.014 0.804082C232.58 0.804082 231.356 1.57353 231.356 3.42061C231.356 5.71661 233.2 6.08737 234.087 6.08737C235.542 6.08737 236.652 5.17164 236.652 3.4675C236.652 1.62154 235.343 0.804082 234.014 0.804082ZM235.519 5.11023C235.225 5.11023 235.076 5.05325 234.915 4.90473C234.915 4.90473 234.33 4.30727 233.953 3.70088C233.953 3.70088 233.645 3.6886 233.452 3.66292V4.50047C233.452 4.83661 233.69 4.8746 233.9 4.8746V5.11023C233.653 5.11023 233.606 5.08337 233.193 5.08337C232.777 5.08337 232.736 5.0968 232.485 5.0968V4.87119C232.7 4.87119 232.944 4.83322 232.944 4.49597V2.39432C232.944 2.0459 232.624 2.0191 232.422 2.0191V1.79015C232.563 1.79015 232.796 1.80133 233.206 1.80133C233.618 1.80133 233.654 1.79016 233.895 1.78122C234.731 1.76001 235.195 2.08389 235.195 2.66124C235.195 3.17717 234.71 3.46635 234.484 3.58249C234.484 3.58249 235.519 4.90587 235.813 4.83663V5.07226C235.813 5.07226 235.723 5.11023 235.519 5.11023ZM233.895 2.04589C233.709 2.04589 233.452 2.07159 233.452 2.07159V3.42729C233.607 3.46191 233.806 3.47977 234.006 3.47977C234.391 3.47977 234.636 3.13471 234.636 2.71147C234.636 2.28935 234.439 2.04589 233.895 2.04589Z" fill="black"/>
                                <path class="logo-path" d="M29.4315 5.22079C29.4315 6.57427 28.27 7.66978 26.8406 7.66978C25.4123 7.66978 24.2319 6.57315 24.2319 5.22079C24.2319 3.87624 25.4123 2.78291 26.8406 2.78291C28.27 2.78291 29.4315 3.87624 29.4315 5.22079Z" fill="black"/>
                                <path class="logo-path" d="M226.901 30.8655C226.901 32.2301 225.751 33.3066 224.323 33.3066C222.871 33.3066 221.713 32.2312 221.713 30.8655C221.713 29.5198 222.87 28.4153 224.323 28.4153C225.751 28.4153 226.901 29.5198 226.901 30.8655Z" fill="black"/>
                                <path class="logo-path" d="M32.1619 32.9001V31.2619C30.6074 31.2619 28.9647 31.0899 28.9647 28.5304V12.4382H27.4705C25.887 12.9664 23.4335 13.5516 21.7148 13.632V15.2625C23.2939 15.7415 23.6513 15.7873 25.3577 16.1547V28.5304C25.3577 31.0519 23.8992 31.2619 22.1448 31.2619V32.9001C23.1878 32.9001 25.0182 32.8063 27.1668 32.8063C29.3064 32.8063 30.8843 32.9001 32.1619 32.9001Z" fill="black"/>
                                <path class="logo-path" d="M63.8182 5.22079C63.8182 6.57427 62.6389 7.66978 61.2028 7.66978C59.7868 7.66978 58.6265 6.57315 58.6265 5.22079C58.6265 3.87624 59.7868 2.78291 61.2028 2.78291C62.6389 2.78291 63.8182 3.87624 63.8182 5.22079Z" fill="black"/>
                                <path class="logo-path" d="M66.5564 32.9001V31.2619C64.9639 31.2619 63.3391 31.0899 63.3391 28.5304V12.4382H61.8293C60.2424 12.9664 57.8102 13.5516 56.0938 13.632V15.2625C57.6773 15.7415 58.0189 15.7873 59.7342 16.1547V28.5304C59.7342 31.0519 58.2747 31.2619 56.5058 31.2619V32.9001C57.5443 32.9001 59.3926 32.8063 61.5333 32.8063C63.6842 32.8063 65.2721 32.9001 66.5564 32.9001Z" fill="black"/>
                                <path class="logo-path" d="M225.54 1.84932C224.18 0.684564 222.467 0 220.173 0C216.162 0 211.538 3.09004 211.538 10.4649V13.632H208.269V15.8263H211.538V28.5304C211.538 31.0553 210.079 31.2619 208.3 31.2619V32.9001C209.583 32.9001 211.359 32.8063 213.499 32.8063C215.649 32.8063 217.366 32.9001 218.649 32.9001V31.2619C216.929 31.2619 215.135 31.0899 215.135 28.5304V15.8263H220.612V13.632H215.135V9.7826C215.135 5.36033 215.859 2.91916 219.123 2.91916C221.212 2.91916 222.505 3.78129 223.451 4.42229L225.54 1.84932Z" fill="black"/>
                                <path class="logo-path" d="M109.95 36.4558C109.95 38.821 107.415 40.7832 103.395 40.7832C99.5878 40.7832 96.4129 39.3202 96.4129 36.6211C96.4129 35.118 98.0333 33.7008 99.0752 33.2832C100.996 33.4965 102.057 33.626 103.776 33.7488C107.245 34.0615 109.95 34.1732 109.95 36.4558ZM107.68 19.6389C107.68 22.2208 106.359 24.7782 102.793 24.7782C100.127 24.7782 98.1271 22.8629 98.1271 19.5496C98.1271 17.0269 99.6168 14.4573 102.826 14.4573C105.489 14.4573 107.68 16.292 107.68 19.6389ZM113.651 15.6052V13.632H107.645C106.532 13.1205 105.458 12.4382 102.963 12.4382C98.375 12.4382 94.4307 15.4043 94.4307 19.6803C94.4307 23.8859 97.7664 25.6905 98.4722 26.0322C97.5631 26.4979 94.6998 28.2177 94.6998 29.8906C94.6998 31.4797 96.108 32.2948 97.3967 32.7628C96.0734 33.4976 93.4111 35.2084 93.4111 38.0394C93.4111 40.9016 96.8853 43.2724 102.185 43.2724C108.72 43.2724 112.834 38.7607 112.834 34.9527C112.834 31.0508 108.764 30.9615 104.851 30.612C101.306 30.3138 98.126 30.1976 98.126 28.7291C98.126 27.6157 99.4135 26.805 100.052 26.5515C100.052 26.5515 100.565 26.8519 102.923 26.8519C106.877 26.8519 111.252 24.4018 111.252 19.6378C111.252 17.3719 110.418 16.5132 109.948 15.6042H113.651V15.6052Z" fill="black"/>
                                <path class="logo-path" d="M19.64 32.9001C19.64 32.9001 19.5652 30.8855 19.5652 29.5868C19.5652 28.3137 19.64 26.2846 19.64 26.2846H18.0185C18.0185 29.8102 16.8996 30.7058 12.6906 30.7058C8.22699 30.7058 6.99186 30.7482 6.99186 27.7017V7.59269C6.99186 5.14369 8.90817 5.23415 10.217 5.23415V3.60376C8.90817 3.60376 7.25322 3.69305 5.10239 3.69305C2.96385 3.69305 1.28648 3.60376 0 3.60376V5.23415C1.28648 5.23415 3.21061 5.14369 3.21061 7.59269V28.9089C3.21061 31.359 1.28648 31.2619 0 31.2619V32.9001C1.28648 32.9001 3.10007 32.8063 5.23415 32.8063C7.38163 32.8063 14.2362 32.8443 19.64 32.9001Z" fill="black"/>
                                <path class="logo-path" d="M54.3011 14.8749V13.2568C53.0169 13.2568 52.2698 13.3383 50.11 13.3383C47.9581 13.3383 47.1831 13.2568 45.8977 13.2568V14.8749C47.6566 14.8749 48.4841 15.6511 48.4841 16.8214C48.4841 17.2056 48.3523 17.6232 48.1848 18.1034L43.9725 28.9089L39.1426 17.2435C38.4748 15.7371 39.214 14.8749 41.9534 14.8749V13.2568C40.6736 13.2568 39.0801 13.3729 36.9382 13.3383C34.7907 13.3383 33.2072 13.3383 31.9185 13.2568V14.8749C33.301 14.8749 34.249 15.0123 34.7907 16.3356L41.6452 32.8912H44.6112L50.378 18.1347C51.3987 15.4824 52.7734 14.8369 54.3011 14.8749Z" fill="black"/>
                                <path class="logo-path" d="M92.3742 32.9001V31.2619C90.7829 31.2619 89.1625 31.0899 89.1625 28.5304V18.9186C89.1625 13.3729 84.6464 12.4382 82.7245 12.4382C78.4352 12.4382 76.3055 15.0123 75.8678 15.5204V12.4382H74.4529C72.866 12.9664 70.407 13.5516 68.7129 13.632V15.2625C70.3087 15.7415 70.6471 15.7873 72.3601 16.1547V28.5304C72.3601 31.0519 70.8838 31.2619 69.1283 31.2619V32.9001C70.1714 32.9001 72.0028 32.8063 74.1447 32.8063C76.3056 32.8063 77.8857 32.9001 79.1733 32.9001V31.2619C77.5909 31.2619 75.9404 31.0899 75.9404 28.5304V17.2871C76.5155 16.4596 78.4753 15.3138 80.6988 15.3138C83.5911 15.3138 85.5588 16.9845 85.5588 19.6803V28.5304C85.5588 31.0519 84.0981 31.2619 82.3415 31.2619V32.9001C83.36 32.9001 85.2126 32.8063 87.3423 32.8063C89.4976 32.8063 91.0811 32.9001 92.3742 32.9001Z" fill="black"/>
                                <path class="logo-path" d="M141.134 23.1656C141.134 28.8754 138.417 31.138 134.912 31.138C131.867 31.138 130.319 29.5879 130.319 29.5879V16.9074C130.62 16.5187 132.034 15.1485 134.912 15.1485C138.477 15.1496 141.134 18.0208 141.134 23.1656ZM145.063 22.137C145.063 17.2446 142.357 12.4393 136.591 12.4393C132.47 12.4393 130.658 14.5868 130.244 15.1028V12.4393H128.825C127.233 12.9676 124.782 13.5706 123.064 13.6331V15.2725C124.654 15.756 125.009 15.794 126.711 16.1815V38.5642C126.711 41.0914 125.259 41.3002 123.498 41.3002V42.9307C124.781 42.9307 126.539 42.8536 128.696 42.8536C130.834 42.8536 132.548 42.9307 133.821 42.9307V41.3002C132.13 41.3002 130.319 41.1338 130.319 38.5642V32.4166C130.319 32.4166 131.566 33.2329 134.824 33.2329C139.89 33.234 145.063 29.3411 145.063 22.137Z" fill="black"/>
                                <path class="logo-path" d="M161.963 16.4305V12.6995C161.465 12.5208 160.911 12.4304 160.343 12.4304C157.511 12.4304 155.151 14.876 154.643 16.2172V12.4304H153.233C151.642 12.9564 149.199 13.546 147.489 13.6343V15.2646C149.073 15.7437 149.414 15.7895 151.132 16.1569V28.5326C151.132 31.0542 149.688 31.2641 147.907 31.2641V32.9023C149.199 32.9023 150.96 32.8007 153.091 32.8007C155.248 32.8007 156.966 32.9023 158.246 32.9023V31.2641C156.528 31.2641 154.742 31.0922 154.742 28.5326V17.9694C155.8 16.6371 157.337 16.1256 159.494 16.1256C160.551 16.1234 161.19 16.292 161.963 16.4305Z" fill="black"/>
                                <path class="logo-path" d="M179.116 22.7646C179.116 26.6263 177.939 31.2183 173.15 31.2183C168.469 31.2183 167.007 26.8351 167.007 22.8026C167.007 19.1598 168.292 14.4785 173.102 14.4785C177.841 14.4796 179.116 19.2034 179.116 22.7646ZM183.131 22.7166C183.131 16.6237 179.588 12.4304 173.184 12.4304C167.988 12.4304 162.935 16.6238 162.935 23.0215C162.935 29.5812 167.008 33.2731 172.882 33.2731C178.342 33.272 183.131 29.3244 183.131 22.7166Z" fill="black"/>
                                <path class="logo-path" d="M202.066 22.7546C202.066 26.6274 200.917 31.2105 196.11 31.2105C191.444 31.2105 189.976 26.8296 189.976 22.8038C189.976 19.161 191.27 14.4796 196.069 14.4796C200.786 14.4796 202.066 19.2034 202.066 22.7546ZM206.095 22.7166C206.095 16.6237 202.541 12.4271 196.166 12.4271C190.965 12.4271 185.912 16.6237 185.912 23.0148C185.912 29.5812 189.976 33.2731 195.858 33.2731C201.291 33.272 206.095 29.3244 206.095 22.7166Z" fill="black"/>
                            </svg>

                        </a>
                    </div>
                    <div class="header-main-right">
                        
                        <div class="search">
                            <button class="unstyle-btn search-toggle search-mobile-trigger" role="button" aria-label="Search">
                                <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                                    viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
                                <path class="icon-path" d="M32.2,30.8l-4.6-4.6l0,0L26.4,25c1.4-1.8,2.3-4,2.3-6.5c0-5.6-4.6-10.2-10.2-10.2S8.3,12.9,8.3,18.5s4.6,10.2,10.2,10.2
                                    c2.5,0,4.7-0.9,6.5-2.3l5.8,5.8c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3s0.3-0.4,0.3-0.7C32.5,31.2,32.4,30.9,32.2,30.8z M18.5,27
                                    c-4.7,0-8.5-3.8-8.5-8.5s3.8-8.5,8.5-8.5s8.5,3.8,8.5,8.5S23.2,27,18.5,27z"/>
                                </svg>
                            </button>
                            <div class="flyout search-flyout">
                                <button class="unstyle-btn close-flyout" role="button" data-target="search"><img src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw3f1836f5/images/icon-close.svg" alt="Close"></button>
                                <div class="flyout-inner-wrap">
                                    

<div class="site-search mt-0">
    <form role="search"
          action="/search"
          method="get"
          name="simpleSearch">
        <h4 class="search-heading mb-2" for="searchMain">
            Search Living Proof
        </h4>
        <div class="search-field-wrap form-group floating-label">
            <label class="search-heading mb-2 form-control-label" for="searchMain">Search Living Proof</label>
            <input class="form-control search-field mb-3"
                id="searchMain"
                type="text"
                name="q"
                value=""
                placeholder="Search Living Proof"
                role="combobox"
                aria-disabled="true"
                aria-describedby="search-assistive-text"
                aria-owns="search-results"
                aria-expanded="false"
                aria-autocomplete="list"
                aria-controls="search-results"
                aria-label="Enter Keyword or Item No."
                autocomplete="off" />
            <button type="reset" name="reset-button" class="fa fa-times reset-button d-none" aria-label="Clear search keywords">
                <img class="reset-search-icon" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw3f1836f5/images/icon-close.svg" alt="Clear search keywords" />
            </button>
            <button type="submit" name="search-button" class="fa fa-search" aria-label="Submit search keywords">
                <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                    viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
                <path class="search-icon-path" d="M32.2,30.8l-4.6-4.6l0,0L26.4,25c1.4-1.8,2.3-4,2.3-6.5c0-5.6-4.6-10.2-10.2-10.2S8.3,12.9,8.3,18.5s4.6,10.2,10.2,10.2
                    c2.5,0,4.7-0.9,6.5-2.3l5.8,5.8c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3s0.3-0.4,0.3-0.7C32.5,31.2,32.4,30.9,32.2,30.8z M18.5,27
                    c-4.7,0-8.5-3.8-8.5-8.5s3.8-8.5,8.5-8.5s8.5,3.8,8.5,8.5S23.2,27,18.5,27z"/>
                </svg>
            </button>
        </div>
        <div class="suggestions-wrapper" data-url="/on/demandware.store/Sites-livingproof-sfra-Site/en_US/SearchServices-GetSuggestions?q=" role="listbox" aria-label="Enter Keyword or Item No." id="search-results"></div>
        <input type="hidden" value="en_US" name="lang">
    </form>
    <span id="search-assistive-text" class="sr-only">
        Use Up and Down arrow keys to navigate search results.
    </span>
</div>

                                </div>
                            </div>
                        </div>

                        <div class="account-menu">
                            
                            
    <div class="user hidden-md-down">
        <a href="https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US/Login-Show" role="button" aria-label="Login to your account">
            <svg class="account-icon" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
            <path class="icon-path" d="M31.1,32c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1c0-5.1-4.1-9.2-9.2-9.2c-5.1,0-9.2,4.1-9.2,9.2c0,0.5-0.4,1-1,1c-0.5,0-1-0.4-1-1
                c0-6.1,5-11.1,11.1-11.1C26.1,21,31.1,25.9,31.1,32z M20,20.3c-3.7,0-6.7-3-6.7-6.7c0-3.7,3-6.7,6.7-6.7c3.7,0,6.7,3,6.7,6.7
                C26.7,17.3,23.7,20.3,20,20.3z M20,18.4c2.6,0,4.8-2.1,4.8-4.8S22.6,8.9,20,8.9c-2.6,0-4.8,2.1-4.8,4.8S17.4,18.4,20,18.4z"/>
            </svg>
            <span class="user-message visually-hidden">Login</span>
        </a>
        
    </div>


                        </div>
                        
                        <div class="minicart" data-action-url="/on/demandware.store/Sites-livingproof-sfra-Site/en_US/Cart-MiniCartShow">
                            <div class="d-none d-md-block">
                                <div class="minicart-total hide-link-med">
    <a class="minicart-link" href="https://www.livingproof.com/cart" title="Bag 0 Items" aria-label="Bag 0 Items" aria-haspopup="true" role="button">
        <svg class="minicart-icon" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
        viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
            <g id="Layer_2">
                <g>
                    <path class="icon-path" d="M32.38,12.4c-0.13-0.14-0.32-0.22-0.52-0.22h-4.73v-1.33c0-4.09-3.18-7.42-7.1-7.42s-7.1,3.33-7.1,7.42v1.33
                        H8.2c-0.21,0-0.4,0.08-0.54,0.22c-0.14,0.15-0.22,0.35-0.22,0.57v21.1c0,1.39,1.09,2.52,2.42,2.52h20.26
                        c1.34,0,2.42-1.13,2.42-2.52l0-21.18C32.57,12.7,32.51,12.52,32.38,12.4z M31.11,34.03c0,0.53-0.42,0.96-0.94,0.96H9.9
                        c-0.52,0-0.94-0.43-0.94-0.96v-20.3h3.97v6.35c0,0.22,0.08,0.42,0.22,0.57c0.28,0.29,0.8,0.29,1.08,0
                        c0.14-0.15,0.22-0.35,0.22-0.57v-6.35h11.16v6.35c0,0.22,0.08,0.42,0.22,0.57c0.28,0.29,0.8,0.3,1.08,0
                        c0.14-0.15,0.22-0.35,0.22-0.57v-6.35h3.97V34.03z M25.61,12.14H14.45v-1.33c0-3.22,2.5-5.83,5.58-5.83s5.58,2.62,5.58,5.83V12.14
                        z"/>
                </g>
            </g>
        </svg>
        <span class="minicart-quantity" data-count="0.0">
            0
        </span>
    </a>
</div>

<div class="minicart-total hide-no-link">
        <svg class="minicart-icon" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
        viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
            <g id="Layer_2">
                <g>
                    <path class="icon-path" d="M32.38,12.4c-0.13-0.14-0.32-0.22-0.52-0.22h-4.73v-1.33c0-4.09-3.18-7.42-7.1-7.42s-7.1,3.33-7.1,7.42v1.33
                        H8.2c-0.21,0-0.4,0.08-0.54,0.22c-0.14,0.15-0.22,0.35-0.22,0.57v21.1c0,1.39,1.09,2.52,2.42,2.52h20.26
                        c1.34,0,2.42-1.13,2.42-2.52l0-21.18C32.57,12.7,32.51,12.52,32.38,12.4z M31.11,34.03c0,0.53-0.42,0.96-0.94,0.96H9.9
                        c-0.52,0-0.94-0.43-0.94-0.96v-20.3h3.97v6.35c0,0.22,0.08,0.42,0.22,0.57c0.28,0.29,0.8,0.29,1.08,0
                        c0.14-0.15,0.22-0.35,0.22-0.57v-6.35h11.16v6.35c0,0.22,0.08,0.42,0.22,0.57c0.28,0.29,0.8,0.3,1.08,0
                        c0.14-0.15,0.22-0.35,0.22-0.57v-6.35h3.97V34.03z M25.61,12.14H14.45v-1.33c0-3.22,2.5-5.83,5.58-5.83s5.58,2.62,5.58,5.83V12.14
                        z"/>
                </g>
            </g>
        </svg>
        <span class="minicart-quantity">
            0
        </span>
</div>
<div class="popover popover-bottom"></div>

                            </div>
                            


<div class="minicart mobile  d-md-none">
    <div class="minicart-total">
        <a class="minicart-link" href="https://www.livingproof.com/cart" title="Bag 0 Items" aria-label="Bag 0 Items" aria-haspopup="true">
            <svg class="minicart-icon" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
            viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve">
                <g id="Layer_2">
                    <g>
                        <path class="icon-path" d="M32.38,12.4c-0.13-0.14-0.32-0.22-0.52-0.22h-4.73v-1.33c0-4.09-3.18-7.42-7.1-7.42s-7.1,3.33-7.1,7.42v1.33
                            H8.2c-0.21,0-0.4,0.08-0.54,0.22c-0.14,0.15-0.22,0.35-0.22,0.57v21.1c0,1.39,1.09,2.52,2.42,2.52h20.26
                            c1.34,0,2.42-1.13,2.42-2.52l0-21.18C32.57,12.7,32.51,12.52,32.38,12.4z M31.11,34.03c0,0.53-0.42,0.96-0.94,0.96H9.9
                            c-0.52,0-0.94-0.43-0.94-0.96v-20.3h3.97v6.35c0,0.22,0.08,0.42,0.22,0.57c0.28,0.29,0.8,0.29,1.08,0
                            c0.14-0.15,0.22-0.35,0.22-0.57v-6.35h11.16v6.35c0,0.22,0.08,0.42,0.22,0.57c0.28,0.29,0.8,0.3,1.08,0
                            c0.14-0.15,0.22-0.35,0.22-0.57v-6.35h3.97V34.03z M25.61,12.14H14.45v-1.33c0-3.22,2.5-5.83,5.58-5.83s5.58,2.62,5.58,5.83V12.14
                            z"/>
                    </g>
                </g>
            </svg>
            <span class="minicart-quantity" data-count="0.0">
                0
            </span>
        </a>
    </div>
</div>

                        </div>
                    </div>
                </nav>
            </div>
        </div>
    </div>
    <div class="flyout-background"></div>
    <div class="product-alert container-fluid">
        <div class="row">
            <div class="col-12 py-2">
                <div class="product-messaging">
                    Item has been added to your bag. <a class="text-link" href="/cart" role="link" aria-label="View Bag">View Bag</a>
                </div>
            </div>
            <button class="unstyle-btn close-alert" role="button" data-target="global-alert"><img src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw3f1836f5/images/icon-close.svg" alt="Close" aria-label="Close"></button>
        </div>
    </div>
</header>

<div role="main" id="site-main">



<div class="storepage" id="homepage">
<div class="experience-page">
<div class="experience-region experience-main"><div class="experience-component experience-commerce_assets-mainBannerCustomHeader">

<div class="image-banner " data-theme="light">
    <div class="">
        <figure class="mainbanner-figure image-component ">
            
                <picture>
                    <source data-srcset="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwd1499219/images/plp/chill/2025_Chill_LPDesk_Tile1.jpg" media="(min-width: 48em)" />
                    <source data-srcset="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwd1499219/images/plp/chill/2025_Chill_LPDesk_Tile1.jpg" media="(min-width: 75em)" />
                    <img class="mainbanner-image image-fluid lazyload common-image-component  stretch"
                        data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwb75b4450/images/plp/chill/NEW_2025_Chill_LP_tile1_Mobile.jpg"
                        src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw477aaf17/images/1x1.png"
                        style="--focal-point-x:50%; --focal-point-y:50%" alt="Leave-In Conditioning Spray. Conditions, detangles, protects. The full leave-in effect." title="Leave-In Conditioning Spray. Conditions, detangles, protects. The full leave-in effect."
                    />
                </picture>
            
            
                <figcaption class="image-heading-container text-overlay light mobile-light center left mobile-alignment pos-bottom-left">
                    <div class="container">
                        <div class="row image-heading-text brand-heading ">
                            <div class="col-12">
                                <span class="heading-inner left mobile-left">
                                    <span class="d-md-none">
                                        
                                            <p>Leave-In Conditioning Spray</p><h3>Conditions,</h3><h3>detangles, protects.</h3><h3>The full leave-in effect.</h3>
                                        
                                    </span>

                                    <span class="d-none d-md-block">
                                        
                                            <p><br></p><h4><br></h4><p><br></p><h3><br></h3><h3><br></h3><h3>Leave-In Conditioning Spray</h3><h1>Conditions, detangles, protects.</h1><h1>The full leave-in effect.</h1>
                                        
                                    </span>

                                    
                                        <span class="heading-btns  left mobile-left">
                                            
                                                <a href="https://www.livingproof.com/Leave-In-Conditioning-Spray.html" class="btn btn-link-primary " onClick=""
                                                    
                                                    ><span>Shop Now
                                                        <span class="icon-arrow">
                                                            <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                                                                viewBox="0 0 19.4 19.4" style="enable-background:new 0 0 19.4 19.4;" xml:space="preserve">
                                                                <g id="Layer_2">
                                                                    <path class="button-icon-path" d="M16.2,9.2L13,4.9c-0.3-0.3-0.7-0.4-1-0.1c-0.3,0.3-0.3,0.8-0.1,1.1l2.3,3.1H3.7C3.3,8.9,3,9.3,3,9.7
                                                                        c0,0.4,0.3,0.8,0.7,0.8h10.6l-2.3,3.1c-0.2,0.3-0.2,0.8,0.1,1.1c0.3,0.3,0.7,0.2,1-0.1l3.2-4.3C16.4,9.8,16.4,9.5,16.2,9.2z"/>
                                                                </g>
                                                            </svg>
                                                        </span>
                                                    </span>
                                                </a>
                                            
                                            
                                            
                                        </span>
                                    
                                </span>
                            </div>
                        </div>
                    </div>
                </figcaption>
            
        </figure>
    </div>
</div></div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-ee80d315bd869601538cbad69e {
        height: 30.0px;
    }
    @media (min-width: 48em) {
        .spacer-ee80d315bd869601538cbad69e {
            height: 30.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-ee80d315bd869601538cbad69e"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_assets-editorialRichText">
<div class="editorialRichText-component-container js-blogDetail" data-blogsidebarlink='' data-blogsidebarid='blogSidebar-d5221f413e42d4fbfd2c2d65b9'>
    <div class="row m-0">
        <div class="col-12 text-center section-heading">
            <h3>Explore award winners.</h3>
        </div>
    </div>
</div></div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-dafa9224e01d9cf15c104d5b6a {
        height: 30.0px;
    }
    @media (min-width: 48em) {
        .spacer-dafa9224e01d9cf15c104d5b6a {
            height: 30.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-dafa9224e01d9cf15c104d5b6a"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_layouts-mobileGrid1r1c">




<div class="  ">
    <div class="mobile-1r-1c container p-0" data-id="null">
        <div class="row m-0">
            <div class="region col-12"><div class="experience-component experience-commerce_layouts-carousel">



<div class="container-fluid carousel p-0 p-md-0   " data-id="null">

    

    

    <div class="row carousel-wrapper  mx-3 mx-md-0">
        
        <div class="container p-0">
            <div class="">
        
                <div class="">
                    <div data-slick="{&quot;slidesToShow&quot;: 3, &quot;slidesToScroll&quot;: 1, &quot;infinite&quot;: true,&quot;variableWidth&quot;: false, &quot;arrows&quot;: true, &quot;dots&quot;: false, &quot;responsive&quot;: [{&quot;breakpoint&quot;:1200,&quot;settings&quot;:{&quot;slidesToShow&quot;: 2,&quot;variableWidth&quot;: false, &quot;arrows&quot;: true, &quot;dots&quot;: false}}, {&quot;breakpoint&quot;:768,&quot;settings&quot;:{&quot;slidesToShow&quot;: 1,&quot;variableWidth&quot;: false, &quot;arrows&quot;: true, &quot;dots&quot;: false}}]}" class="pd-slider slider-core-css pd-content-slider"><div class="product pd-slide">




    

<div class="product" data-pid="R1006">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="274992838ca87d0b143aae1435" -->
    

<div class="image-container">
    <a href="/perfect-hair-day%E2%84%A2/dry-shampoo/R1006.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw03beb168/images/hi-res/pdp/penguin/dryshampoo/dryshampoo_new_fs.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw03beb168/images/hi-res/pdp/penguin/dryshampoo/dryshampoo_new_fs.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Dry Shampoo"
             title="Dry Shampoo, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw983d3753/images/hi-res/pdp/dry-shampoo-new/ds/2024_OGDS_PPAGE_2.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw983d3753/images/hi-res/pdp/dry-shampoo-new/ds/2024_OGDS_PPAGE_2.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Dry Shampoo"
                title="Dry Shampoo, "
                />
        
    </a>
    


    

    
    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/perfect-hair-day%E2%84%A2/dry-shampoo/R1006.html">
        
            <div class="collection">
                <span class="no-strikethrough">Perfect hair Day™</span>
                
                
            </div>
        
        <span class="product-name"> Dry Shampoo</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="30.00">
        
        $30.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R1006"
        data-product-models="null"
        data-name="Dry Shampoo"
        data-url="https://www.livingproof.com/perfect-hair-day%2525E2%252584%2525A2/dry-shampoo/R1006.html#reviews"
        data-image-url="Image not available"
        data-description="This dry shampoo actually cleans hair by absorbing oil, sweat, and odor while also making hair smell clean with a crisp, time-released fragrance."
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div><div class="product pd-slide">




    

<div class="product" data-pid="R1024">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="428e724f5ff9ffff55f527e956" -->
    

<div class="image-container">
    <a href="/perfect-hair-day%E2%84%A2/advanced-clean-dry-shampoo/R1024.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw591806d4/images/hi-res/pdp/refresh/PDP_PhD_AdvancedClean_FS_Front.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw591806d4/images/hi-res/pdp/refresh/PDP_PhD_AdvancedClean_FS_Front.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Advanced Clean Dry Shampoo"
             title="Advanced Clean Dry Shampoo, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dweb7ba79d/images/hi-res/pdp/dry-shampoo-new/acds/2024_ACDS_PPAGE_2.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dweb7ba79d/images/hi-res/pdp/dry-shampoo-new/acds/2024_ACDS_PPAGE_2.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Advanced Clean Dry Shampoo"
                title="Advanced Clean Dry Shampoo, "
                />
        
    </a>
    


    

    
    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/perfect-hair-day%E2%84%A2/advanced-clean-dry-shampoo/R1024.html">
        
            <div class="collection">
                <span class="no-strikethrough">Perfect hair Day™</span>
                
                
            </div>
        
        <span class="product-name"> Advanced Clean Dry Shampoo</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="33.00">
        
        $33.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R1024"
        data-product-models="null"
        data-name="Advanced Clean Dry Shampoo"
        data-url="https://www.livingproof.com/perfect-hair-day%2525E2%252584%2525A2/advanced-clean-dry-shampoo/R1024.html#reviews"
        data-image-url="Image not available"
        data-description="&lt;p&gt;&lt;b&gt;NEW&lt;/b&gt; Jumbo size available.&lt;/p&gt;
&lt;p&gt;This breakthrough formula cleans and cares like a rinse-out shampoo, eliminating oil and sweat while leaving hair with just-washed softness and shine with conditioned ends and scalp. Extend time between washes and preserve your style for longer.&lt;/p&gt;"
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div><div class="product pd-slide">




    

<div class="product" data-pid="R1025">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="64f51b91bdec73a59e986eba49" -->
    

<div class="image-container">
    <a href="/full/dry-volume-%26-texture-spray/R1025.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwc3ba6c97/images/hi-res/pdp/refresh/Full_DVTS_FS_FRONT_2000x2000.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwc3ba6c97/images/hi-res/pdp/refresh/Full_DVTS_FS_FRONT_2000x2000.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Dry Volume &amp; Texture Spray"
             title="Dry Volume &amp; Texture Spray, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwa3438bac/images/hi-res/pdp/new-2024/dvts/dvts_PPage_3.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwa3438bac/images/hi-res/pdp/new-2024/dvts/dvts_PPage_3.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Dry Volume &amp; Texture Spray"
                title="Dry Volume &amp; Texture Spray, "
                />
        
    </a>
    


    

    
    

    
        
        
            
                <div class="product-badge product-badge--right">
                    <img src="https://www.livingproof.com/on/demandware.static/-/Sites-livingproof-catalog/default/dwc3c11b79/images/badges/2024_allure_seal_dvts.png" alt="Reader's Choice Award Winner Allure The Beauty Expert 2024"
                        class="img-fluid">
                </div>
            
        
    

    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/full/dry-volume-%26-texture-spray/R1025.html">
        
            <div class="collection">
                <span class="no-strikethrough">Full</span>
                
                
            </div>
        
        <span class="product-name"> Dry Volume &amp; Texture Spray</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="36.00">
        
        $36.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R1025"
        data-product-models="null"
        data-name="Dry Volume &amp; Texture Spray"
        data-url="https://www.livingproof.com/full/dry-volume-%252526-texture-spray/R1025.html#reviews"
        data-image-url="Image not available"
        data-description="&lt;p&gt;A versatile texturizing spray that turns up the volume on different styles for an imperfectly perfect lived-in look and feel.&lt;/p&gt;"
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div><div class="product pd-slide">




    

<div class="product" data-pid="R801">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="53caf06478a699c654c0682374" -->
    

<div class="image-container">
    <a href="/style-lab%C2%AE/flex-hairspray/R801.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwa53d3cc5/images/hi-res/pdp/refresh/PDP_StyleLab_Flex_FS_Front.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwa53d3cc5/images/hi-res/pdp/refresh/PDP_StyleLab_Flex_FS_Front.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Flex Hairspray"
             title="Flex Hairspray, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwe616996d/images/hi-res/pdp/refresh/alts/StyleLab_Flex_ALTIMG_1.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwe616996d/images/hi-res/pdp/refresh/alts/StyleLab_Flex_ALTIMG_1.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Flex Hairspray"
                title="Flex Hairspray, "
                />
        
    </a>
    


    

    
    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/style-lab%C2%AE/flex-hairspray/R801.html">
        
            <div class="collection">
                <span class="no-strikethrough">Style Lab®</span>
                
                
            </div>
        
        <span class="product-name"> Flex Hairspray</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="32.00">
        
        $32.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R801"
        data-product-models="null"
        data-name="Flex Hairspray"
        data-url="https://www.livingproof.com/style-lab%2525C2%2525AE/flex-hairspray/R801.html#reviews"
        data-image-url="Image not available"
        data-description="&lt;p&gt;&lt;b&gt;NEW&lt;/b&gt; Jumbo size available.&lt;/p&gt;
&lt;p&gt;This medium-hold spray can be used to set, style, and finish without stiffness, leaving hair touchable and&nbsp;brushable.&lt;/p&gt;"
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div><div class="product pd-slide">




    

<div class="product" data-pid="R1034">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="1ef6a8e2bf6e880b0088461e16" -->
    

<div class="image-container">
    <a href="/triple-bond-complex/R1034.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwc4b69ae9/images/hi-res/pdp/as_seen_on_tiktok_badge/TBC_TT_new.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dwc4b69ae9/images/hi-res/pdp/as_seen_on_tiktok_badge/TBC_TT_new.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Triple Bond Complex"
             title="Triple Bond Complex, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw38186241/images/hi-res/pdp/new-2024/tbc/tbc_PPage_2.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw38186241/images/hi-res/pdp/new-2024/tbc/tbc_PPage_2.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Triple Bond Complex"
                title="Triple Bond Complex, "
                />
        
    </a>
    


    

    
    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/triple-bond-complex/R1034.html">
        
            <div class="collection">
                <span class="no-strikethrough"></span>
                
                
            </div>
        
        <span class="product-name"> Triple Bond Complex</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="45.00">
        
        $45.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R1034"
        data-product-models="null"
        data-name="Triple Bond Complex"
        data-url="https://www.livingproof.com/triple-bond-complex/R1034.html#reviews"
        data-image-url="Image not available"
        data-description="A weekly leave-in treatment and hair mask that makes hair 8x stronger* + more resistant to future damage while adding softness, smoothness + shine.
&lt;br&gt;
&lt;br&gt;
&lt;i&gt;*Against grooming breakage vs untreated&lt;/i&gt;"
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div><div class="product pd-slide">




    

<div class="product" data-pid="R1043">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="edeea5954b3548eaa4ce63fcc0" -->
    

<div class="image-container">
    <a href="/scalp-care/density-serum/R1043.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw17150351/images/hi-res/pdp/density/2024-02_Serum_Soldier_PPAGE_2000x2000_V02.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw17150351/images/hi-res/pdp/density/2024-02_Serum_Soldier_PPAGE_2000x2000_V02.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Density Serum"
             title="Density Serum, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw20d32151/images/hi-res/pdp/new-2024/density/ds_PPage_ba_3.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw20d32151/images/hi-res/pdp/new-2024/density/ds_PPage_ba_3.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Density Serum"
                title="Density Serum, "
                />
        
    </a>
    


    

    
    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/scalp-care/density-serum/R1043.html">
        
            <div class="collection">
                <span class="no-strikethrough">Scalp Care</span>
                
                
            </div>
        
        <span class="product-name"> Density Serum</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="64.00">
        
        $64.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R1043"
        data-product-models="null"
        data-name="Density Serum"
        data-url="https://www.livingproof.com/scalp-care/density-serum/R1043.html#reviews"
        data-image-url="Image not available"
        data-description="&lt;p&gt;A scalp serum formulated to minimize the appearance of grey hair, reduce shedding, increase hair density, and promote hair growth in as little as 90 days.&lt;/p&gt;"
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div><div class="product pd-slide">




    

<div class="product" data-pid="R1042">
    <div class="product-tile" itemscope itemtype="http://schema.org/Product">
    <!-- dwMarker="product" dwContentID="05b59a5fba6169c7ac423763e0" -->
    

<div class="image-container">
    <a href="/clarifying-detox-shampoo/R1042.html" data-alt-image="3">
        <img class="tile-image lazyload"
             src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw0275b96b/images/hi-res/pdp/anchor/Anchor_Front.jpg?sw=140&amp;sh=140&amp;sm=fit" =
             data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw0275b96b/images/hi-res/pdp/anchor/Anchor_Front.jpg?sw=400&amp;sh=400&amp;sm=fit"
             alt="Clarifying Detox Shampoo"
             title="Clarifying Detox Shampoo, "
             />
        
            <img class="tile-hover-image lazyload"
                src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw02a9b989/images/hi-res/pdp/anchor/Sephora_PPage_Hero-1.jpg?sw=140&amp;sh=140&amp;sm=fit"
                data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Sites-livingproof-catalog/default/dw02a9b989/images/hi-res/pdp/anchor/Sephora_PPage_Hero-1.jpg?sw=400&amp;sh=400&amp;sm=fit"
                alt="Clarifying Detox Shampoo"
                title="Clarifying Detox Shampoo, "
                />
        
    </a>
    


    

    
    
</div>

    <div class="tile-body">
        
            <div class="color-swatches">
    <div class="swatches">
        
            
        
    </div>
</div>

        
        


<div class="pdp-link">
    <a class="link" href="/clarifying-detox-shampoo/R1042.html">
        
            <div class="collection">
                <span class="no-strikethrough"></span>
                
                
            </div>
        
        <span class="product-name"> Clarifying Detox Shampoo</span>
        
    </a>
</div>

        
            
        

        

        
            
    
        <div class="price">
            
            <span class="d-flex price-container">
    

    

    
    <span class="sales">
        
        
        
            <span class="value" content="36.00">
        
        $36.00


        </span>
    </span>
</span>

        </div>
    

            
            
        
        <div class="ratings">
            

    
    <div id="yotpo-bottomline-top-div" class="yotpo bottomLine mt-2 mb-3"
        data-appkey="null"
        data-domain="https://www.livingproof.com"
        data-product-id="R1042"
        data-product-models="null"
        data-name="Clarifying Detox Shampoo"
        data-url="https://www.livingproof.com/clarifying-detox-shampoo/R1042.html#reviews"
        data-image-url="Image not available"
        data-description="&lt;p&gt;&lt;b&gt;NEW&lt;/b&gt; Jumbo size available.&lt;/p&gt;
&lt;p&gt;A gentle clarifying shampoo that deeply cleanses hair, removing product buildup, pollution, excess oil, and heavy metals deposited from hard water to keep hair cleaner, longer.* &lt;/p&gt;

&lt;i&gt;*When used with Living Proof conditioners&lt;/i&gt;"
        data-bread-crumbs="Shop">
    </div>
    


        </div>
        
            <div class="row tile-body-footer">
    
        <div class="compare col-sm-6 hidden-xs-down">
            

        </div>
    
</div>

        
    </div>
    <!-- END_dwmarker -->
</div>

</div>




</div></div>
                </div>
        
            </div>
        </div>
        
    </div>
</div></div><div class="experience-component experience-commerce_assets-imageAndText">





<div class="row m-0 ITC-container dark no-bg horizontal">
    <div class="col-12 p-md-0">
        <figure class="ITC-figure image-component text-below"
            
        >
            
                <picture class="first">
                    <source data-srcset="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwdf6d4d84/images/homepage/LP.comHairQuiz_600x532.jpg" media="(min-width: 48em)"/>
                    <source data-srcset="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwdf6d4d84/images/homepage/LP.comHairQuiz_600x532.jpg" media="(min-width: 75em)"/>
                    
                    <a class="text-center" href="https://www.livingproof.com/quiz.html" aria-label="Image Link For Find your routine. Take the Quiz">
                        <img
                            class="ITC-image image-fluid lazyload common-image-component  stretch"
                            data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwdf6d4d84/images/homepage/LP.comHairQuiz_600x532.jpg"
                            src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw477aaf17/images/1x1.png"
                            
                            alt="Find your routine. Take the Quiz" title="Find your routine. Take the Quiz"
                        />
                    </a>
                </picture>
            
            <figcaption class="left second">
                <div class="col-12 ITC-text-underneath text-area brand-heading">
                    <span class="heading-text text-left">
                        <h2>Find your routine.</h2><p>Let us match you with the perfect product for your hair.</p>
                    </span>
                    
                        <span class="heading-btns  text-left">
                        
                                <a href="https://www.livingproof.com/quiz.html" class="btn btn-link-primary " onClick="" 
                                    
                                    ><span>Take our Hair Quiz
                                        <span class="icon-arrow">
                                            <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                                                viewBox="0 0 19.4 19.4" style="enable-background:new 0 0 19.4 19.4;" xml:space="preserve">
                                                <g id="Layer_2">
                                                    <path class="button-icon-path" d="M16.2,9.2L13,4.9c-0.3-0.3-0.7-0.4-1-0.1c-0.3,0.3-0.3,0.8-0.1,1.1l2.3,3.1H3.7C3.3,8.9,3,9.3,3,9.7
                                                        c0,0.4,0.3,0.8,0.7,0.8h10.6l-2.3,3.1c-0.2,0.3-0.2,0.8,0.1,1.1c0.3,0.3,0.7,0.2,1-0.1l3.2-4.3C16.4,9.8,16.4,9.5,16.2,9.2z"/>
                                                </g>
                                            </svg>
                                        </span>
                                    </span>
                                </a>
                            
                            
                        </span>
                    
                </div>
            </figcaption>
        </figure>
    </div>
</div>

</div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-458a8520f2c11a529330531db7 {
        height: 50.0px;
    }
    @media (min-width: 48em) {
        .spacer-458a8520f2c11a529330531db7 {
            height: 40.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-458a8520f2c11a529330531db7"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_assets-contentAsset">


<div class="container hair-type-container p-0 pl-3 pl-md-0 text-center">
	<h3 class="font-size-32 mb-4 px-3 px-md-0">Shop our products.</h3>
	<nav class="hair-type-nav mb-4">
		<ul class="unstyle d-flex align-items-center justify-content-center m-auto">
		</ul>
	</nav>
	<div class="hair-type-sliders text-left">
		<div id="concerns" class="hair-types align-items-center justify-content-between slider-core-css hair-type-slider active">
			<span class="hair-type">
				<figure>
					<a href="https://www.livingproof.com/shop/shop-by-product-type/shampoos-and-conditioners/"><img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwea84fcd0/images/homepage/shopbyslider/ShopShCO1.jpg" alt="Shop Shampoos + Conditioners" /></a>
					<figcaption class="text-body mt-2"><a href="https://www.livingproof.com/shop/shop-by-product-type/shampoos-and-conditioners/">Shop Shampoos + Conditioners &raquo;</a></figcaption>
				</figure>
			</span>
			<span class="hair-type">
				<figure>
					<a href="https://www.livingproof.com/shop/shop-by-product-type/dry-shampoo/"><img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwa29aec80/images/homepage/shopbyslider/ShopDryShampoo.jpg" alt="Shop Dry Shampoo" /></a>
					<figcaption class="text-body mt-2"><a href="https://www.livingproof.com/shop/shop-by-product-type/dry-shampoo/">Shop Dry Shampoo &raquo;</a></figcaption>
				</figure>
			</span>
			<span class="hair-type">
				<figure>
					<a href="https://www.livingproof.com/shop/more-ways-to-shop/best-sellers/"><img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw4a8c9c31/images/homepage/shopbyslider/ShopBestSellers.jpg" alt="Shop Best Sellers" /></a>
					<figcaption class="text-body mt-2"><a href="https://www.livingproof.com/shop/more-ways-to-shop/best-sellers/">Shop Best Sellers &raquo;</a></figcaption>
				</figure>
			</span>
			<span class="hair-type">
				<figure>
					<a href="https://www.livingproof.com/shop/more-ways-to-shop/new-products/"><img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw281a6ca6/images/homepage/shopbyslider/ShopNew.jpg" alt="Shop New Launches" /></a>
					<figcaption class="text-body mt-2"><a href="https://www.livingproof.com/shop/more-ways-to-shop/new-products/">Shop New Launches &raquo;</a></figcaption>
				</figure>
			</span>
			
		</div>
	</div>
</div>

<style>
.hair-types .slick-slide {
    height: auto;
}
</style>
</div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-90a7a78b5ed29fb108b517325c {
        height: 0.0px;
    }
    @media (min-width: 48em) {
        .spacer-90a7a78b5ed29fb108b517325c {
            height: 30.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-90a7a78b5ed29fb108b517325c"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_assets-imageAndText">





<div class="row m-0 ITC-container dark no-bg horizontal">
    <div class="col-12 p-md-0">
        <figure class="ITC-figure image-component text-below"
            
        >
            
                <picture class="first">
                    <source data-srcset="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw4c26599c/images/homepage/LP.comHairtech_600x532.jpg" media="(min-width: 48em)"/>
                    <source data-srcset="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw4c26599c/images/homepage/LP.comHairtech_600x532.jpg" media="(min-width: 75em)"/>
                    
                    <a class="text-center"  aria-label="Image Link For Image without a name">
                        <img
                            class="ITC-image image-fluid lazyload common-image-component  stretch"
                            data-src="https://www.livingproof.com/dw/image/v2/BCMH_PRD/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw4c26599c/images/homepage/LP.comHairtech_600x532.jpg"
                            src="/on/demandware.static/Sites-livingproof-sfra-Site/-/default/dw477aaf17/images/1x1.png"
                            
                            alt="Image without a name" title="Image without a name"
                        />
                    </a>
                </picture>
            
            <figcaption class="center left second">
                <div class="col-12 ITC-text-underneath text-area brand-heading">
                    <span class="heading-text text-left">
                        <h2>HairTech Labs</h2><p>Curious about the science behind our breakthrough products?</p><p>Explore our in-house facility where we develop and test our transformative, bioengineered formulas.</p>
                    </span>
                    
                        <span class="heading-btns  text-left">
                        
                                <a href="https://www.livingproof.com/our-science.html" class="btn btn-link-primary " onClick="" 
                                    
                                    ><span>Learn More
                                        <span class="icon-arrow">
                                            <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                                                viewBox="0 0 19.4 19.4" style="enable-background:new 0 0 19.4 19.4;" xml:space="preserve">
                                                <g id="Layer_2">
                                                    <path class="button-icon-path" d="M16.2,9.2L13,4.9c-0.3-0.3-0.7-0.4-1-0.1c-0.3,0.3-0.3,0.8-0.1,1.1l2.3,3.1H3.7C3.3,8.9,3,9.3,3,9.7
                                                        c0,0.4,0.3,0.8,0.7,0.8h10.6l-2.3,3.1c-0.2,0.3-0.2,0.8,0.1,1.1c0.3,0.3,0.7,0.2,1-0.1l3.2-4.3C16.4,9.8,16.4,9.5,16.2,9.2z"/>
                                                </g>
                                            </svg>
                                        </span>
                                    </span>
                                </a>
                            
                            
                        </span>
                    
                </div>
            </figcaption>
        </figure>
    </div>
</div>

</div></div>
        </div>
    </div>
</div>
</div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-e49c2e2937d5b5ef5bb1413cd9 {
        height: 60.0px;
    }
    @media (min-width: 48em) {
        .spacer-e49c2e2937d5b5ef5bb1413cd9 {
            height: 60.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-e49c2e2937d5b5ef5bb1413cd9"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_layouts-mobileGrid1r1c">




<div class="  ">
    <div class="mobile-1r-1c container p-0" data-id="null">
        <div class="row m-0">
            <div class="region col-12"><div class="experience-component experience-commerce_assets-contentAsset">


<div class="r-d-slider-container mx-3 mx-md-auto">
	<h3 class="r-d-slider-heading text-left">Hair 101</h3>
	<p class="text-mini text-left">Our thoughts, out loud.</p>
	<div class="slider-core-css r-d-slider">
		<div class="r-d-slider-item">
			<div class="row pr-2 pr-md-0">
				<span class="col-12 col-md-7 pr-md-3">
                                     <a href="https://blog.livingproof.com/triple-bond-complex-technology/" target="_blank" role="link">
					<img class="d-block r-d-image r-d-image-lg mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw810d6d09/images/triple-bond/Triple_Bond_Blog1_DESK.jpg" alt="A hand displays a bottle of hair care product, which is Living Proof Triple Bond Complex, showcasing its sleek design with label clearly visible." />
					<div class="r-d-copy">
						<p class="text-body">The Technology Behind Triple Bond Complex
</p>
					</div>
                                    </a>

				</span>
				<span class="col-6 col-md-2 pr-3">
                                     <a href="https://blog.livingproof.com/hair-bonds-guide/" target="_blank" role="link">
					<img class="d-block r-d-image r-d-image-sm mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw18b1c789/images/triple-bond/Triple_Bond_Blog2_DESK.jpg" alt="A woman with long blonde hair is gently twisting her hair around her wrist, highlighting the strength of her hair." />
					<div class="r-d-copy">
						<p class="text-body">Hair Bonds 101: What They Are and How to Repair Them
</p>
					</div>
                                     </a>

				</span>
				<span class="col-6 col-md-2">
                                     <a href="https://blog.livingproof.com/triple-bond-complex-testimonials/" target="_blank" role="link">
					<img class="d-block r-d-image r-d-image-sm mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwd354508d/images/triple-bond/Triple_Bond_Blog3_DESK.jpg" alt="A hairdresser cuts a woman's hair in a bright salon, with mirrors and styling tools visible in the background." />
					<div class="r-d-copy">
						<p class="text-body">Triple Bond Complex Stylist Testimonials</p>
					</div>
                                     </a>

				</span>



				
			</div>
		</div>
<!--		<div class="r-d-slider-item">
			<div class="row pr-2 pr-md-0">
				<span class="col-12 col-md-7 pr-md-3">
                                     <a href="#" role="link">
					<img class="d-block r-d-image r-d-image-lg mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw12f92791/images/r-d-image-01.jpg" alt="R&D" />
					<div class="r-d-copy">
						<p class="text-mini mb-0 text-color-grey-aa">Published May 2021</p>
						<p class="text-body">You're only as good as your last haircut (and other lockdown stories)</p>
					</div>
                                     </a>

				</span>
				<span class="col-6 col-md-2 pr-3">
                                     <a href="#" role="link">
					<img class="d-block r-d-image r-d-image-sm mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwb8006bc0/images/r-d-image-02.png" alt="R&D" />
					<div class="r-d-copy">
						<p class="text-mini mb-0 text-color-grey-aa">Published May 2021</p>
						<p class="text-body">Is Frizz something we need to "get over"?</p>
					</div>
                                     </a>

				</span>
				<span class="col-6 col-md-2">
                                     <a href="#" role="link">
					<img class="d-block r-d-image r-d-image-sm mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwa19b6158/images/r-d-image-03.png" alt="R&D" />
					<div class="r-d-copy">
						<p class="text-mini mb-0 text-color-grey-aa">Published May 2021</p>
						<p class="text-body">Does anti-gravity really exist in haircare?</p>
					</div>
                                     </a>

				</span>
			</div>
		</div>
		<div class="r-d-slider-item">
			<div class="row pr-2 pr-md-0">
				<span class="col-12 col-md-7 pr-md-3">
                                    <a href="#" role="link">
					<img class="d-block r-d-image r-d-image-lg mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw12f92791/images/r-d-image-01.jpg" alt="R&D" />
					<div class="r-d-copy">
						<p class="text-mini mb-0 text-color-grey-aa">Published May 2021</p>
						<p class="text-body">You're only as good as your last haircut (and other lockdown stories)</p>
					</div>
                                     </a>
				</span>
				<span class="col-6 col-md-2 pr-3">
                                    <a href="#" role="link">
					<img class="d-block r-d-image r-d-image-sm mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwb8006bc0/images/r-d-image-02.png" alt="R&D" />
					<div class="r-d-copy">
						<p class="text-mini mb-0 text-color-grey-aa">Published May 2021</p>
						<p class="text-body">Is Frizz something we need to "get over"?</p>
					</div>
                                    </a>

				</span>
				<span class="col-6 col-md-2">
                                    <a href="#" role="link">
					<img class="d-block r-d-image r-d-image-sm mb-3" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwa19b6158/images/r-d-image-03.png" alt="R&D" />
					<div class="r-d-copy">
						<p class="text-mini mb-0 text-color-grey-aa">Published May 2021</p>
						<p class="text-body">Does anti-gravity really exist in haircare?</p>
					</div>
                                    </a>

				</span>
			</div>
		</div>-->
	</div>
</div>
</div></div>
        </div>
    </div>
</div>
</div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-020ee3d5de055cac7dd71cd56f {
        height: 30.0px;
    }
    @media (min-width: 48em) {
        .spacer-020ee3d5de055cac7dd71cd56f {
            height: 50.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-020ee3d5de055cac7dd71cd56f"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_assets-contentAsset">


<div
	class="yotpo yotpo-pictures-widget"
	data-gallery-id="679d16f2a0a2f366f9c52c68">
</div>
</div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-b0eb2b0f3e0f1607a643471927 {
        height: 30.0px;
    }
    @media (min-width: 48em) {
        .spacer-b0eb2b0f3e0f1607a643471927 {
            height: 50.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-b0eb2b0f3e0f1607a643471927"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_layouts-mobileGrid2r1c">






<div class=" ">
    <div class="mobile-2r-1c container" data-id="null">
        <div class="row m-0">
            <div class="region col-12 p-0 col-sm-6"><div class="experience-component experience-commerce_assets-editorialRichText">
<div class="editorialRichText-component-container js-blogDetail" data-blogsidebarlink='' data-blogsidebarid='blogSidebar-8a187f20a765e7fc7ec7f42caf'>
    <div class="row m-0">
        <div class="col-12 text-left ">
            <h4>Hair Products That Make a Difference</h4><p><span style="background-color: transparent; color: rgb(0, 0, 0);">At Living Proof, safety and effectiveness are our top priorities, which is why we work with a team of scientists and haircare experts to develop </span><a href="https://www.livingproof.com/shop/more-ways-to-shop/shop-all-products/" target="_self" data-link-type="category" data-link-label="Shop All Products" data-category-id="more-ways-to-shop-all-products" data-category-catalog-id="livingproof-storefront-en" style="background-color: transparent; color: rgb(0, 0, 0);"><u>salon-quality hair products</u></a><span style="background-color: transparent; color: rgb(0, 0, 0);"> that actually work. Whether it’s a </span><a href="https://www.livingproof.com/full/shampoo/R1030.html" target="_self" data-link-type="product" data-link-label="R1030" data-product-id="R1030" style="background-color: transparent; color: rgb(0, 0, 0);"><u>volumizing shampoo</u></a><span style="background-color: transparent; color: rgb(0, 0, 0);"> to add fullness and texture to fine hair, a </span><a href="https://www.livingproof.com/style-lab%C2%AE/flex-hairspray/R801.html" target="_self" data-link-type="product" data-link-label="R801" data-product-id="R801" style="background-color: transparent; color: rgb(0, 0, 0);"><u>flexible hairspray</u></a><span style="background-color: transparent; color: rgb(0, 0, 0);"> to hold your preferred style, or a </span><a href="https://www.livingproof.com/restore/conditioner/R1033.html" target="_self" data-link-type="product" data-link-label="R1033" data-product-id="R1033" style="background-color: transparent; color: rgb(0, 0, 0);"><u>nourishing conditioner</u></a><span style="background-color: transparent; color: rgb(0, 0, 0);"> to make dry hair soft and manageable, our haircare products are formulated to support all hair types and textures and will give you the confidence to let your natural beauty shine.</span></p>
        </div>
    </div>
</div></div></div>
            <div class="region col-12 p-0 col-sm-6"><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-2dc78ef2109c3cde3dcd270aa6 {
        height: 30.0px;
    }
    @media (min-width: 48em) {
        .spacer-2dc78ef2109c3cde3dcd270aa6 {
            height: 0.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-2dc78ef2109c3cde3dcd270aa6"></div>
    </div>
</div>

</div><div class="experience-component experience-commerce_assets-editorialRichText">
<div class="editorialRichText-component-container js-blogDetail" data-blogsidebarlink='' data-blogsidebarid='blogSidebar-015f6c3ddd708e2f9fe8ab3736'>
    <div class="row m-0">
        <div class="col-12 text-left ">
            <h4>Proven Formulas You Can Trust</h4><p>We’re committed to creating carefully formulated and rigorously tested hair products that solve your most pressing haircare challenges. Our <a href="https://www.livingproof.com/our-science.html" target="_self" data-link-type="page" data-link-label="our-science" data-content-page-id="our-science"><u>scientific approach</u></a> revolutionary technology, and curated list of ingredients have made us a household name in the haircare industry, while the proven quality of our hair products have earned us a loyal following. To learn more about the science behind Living Proof, find out <a href="https://www.livingproof.com/our-science/how-we-formulate.html" target="_self" data-link-type="page" data-link-label="how-we-formulate" data-content-page-id="how-we-formulate"><u>how we formulate</u></a> our haircare products.</p>
        </div>
    </div>
</div></div></div>
        </div>
    </div>
</div></div><div class="experience-component experience-commerce_assets-contentAsset">


<link rel="canonical" href="https://www.livingproof.com"/>
</div><div class="experience-component experience-commerce_assets-spacer">
<style>
    .spacer-7a65d042ca0f12850507026563 {
        height: 32.0px;
    }
    @media (min-width: 48em) {
        .spacer-7a65d042ca0f12850507026563 {
            height: 64.0px;
        }
    }
</style>
<div class="row m-0">
    <div class="col-12">
        <div class="spacer spacer-7a65d042ca0f12850507026563"></div>
    </div>
</div>

</div></div>
</div>
</div>

</div>

    <script src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/js/yotpos.js" ></script>



<div class="footer-email-signup container">

    
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="dfc32679ff36c3d12c875bc9aa" -->
        <style>
.footer-email-signup .footer-signup {
    flex: 1 0 100%;
    text-align: center;
}

.footer-email-signup .footer-signup-form-container {
    flex: 1 0 100%;
    margin: 0;
}

@media (min-width: 768px) {

.footer-email-signup .footer-signup {
    flex: 1 0 auto;
    text-align: left;
    margin: 0;
}

.footer-email-signup .footer-signup-form-container {
    flex: 1 0 50%;
    margin-left: 4.625rem;
}


}
</style>
<div class="footer-signup flex-column align-items-start">
	<h2 class="footer-signup-heading text-color-white">Get the Living Proof</h2>
	<h6 class="footer-signup-subheading text-color-white">Styling tips, how-to guides, and offers.</h6>
</div>
<div class="footer-signup-form-container">
	<div class="klaviyo-form-UWyddw"></div>
</div>
    </div> <!-- End content-asset -->




    
    
</div>

<footer id="footercontent" role="contentinfo">
    <div class="container py-md-2">
        <div class="footer-container row">
            <div class="footer-item col-md-2 collapsible-xs">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="f7a8be17eec1ebd7ad6c96032e" -->
        <div><button class="title unstyle-btn text-left btn-block d-sm-none" aria-expanded="false" aria-controls="livingproof-links">Living Proof</button><h5 class="footer-section-heading title d-none d-sm-block">Living Proof</h2></div>
<ul id="livingproof-links" class="content">
<li><a class="no-decoration" href="https://www.livingproof.com/shop/more-ways-to-shop/shop-all-products/" role="link">Shop</a></li>
<li><a class="no-decoration" href="#" role="link" onclick="revieveFunction(); return false;">Haircare Quiz</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/auto-replenish.html" role="link">Auto-replenish</a></li>
<!--<li><a class="no-decoration" href="https://www.livingproof.com/hair-101.html" role="link">Hair 101</a></li>-->
<li><a class="no-decoration" href="https://www.livingproof.com/proof-perks.html" role="link">Proofie Perks</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/the-proof-society.html" role="link">Affiliate Program</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/stores" role="link">Retail Locations</a></li>
<li><a class="no-decoration" href="https://pro.livingproof.com/DefaultStore/ccrz__CCSiteLogin" role="link">Distributor Portal</a></li>
</ul>
    </div> <!-- End content-asset -->



            </div>
            <div class="footer-item col-md-2 collapsible-xs">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="38fbe7f38d88c10188d255a204" -->
        <div><button class="title unstyle-btn text-left btn-block d-sm-none" aria-expanded="false" aria-controls="about-links">About Us</button><h5 class="footer-section-heading title d-none d-sm-block">About Us</h5></div>
<ul id="about-links" class="content">
<li><a class="no-decoration" href="https://www.livingproof.com/our-story.html" role="link">Our Story</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/our-science.html" role="link">Our Science</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/our-science/how-we-formulate.html" role="link">How We Formulate</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/sustainability.html" role="link">Sustainability</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/careers.html" role="link">Careers</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/press.html" role="link">Press</a></li>
<li><a class="no-decoration" href="https://www.livingproof.com/style-lab-courses.html" role="link">Salon Education Courses</a></li>
</ul>
    </div> <!-- End content-asset -->



            </div>
            <div class="footer-item col-md-2 collapsible-xs">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="cc6f6963999ec31641353c7d12" -->
        <div>
	<button class="title unstyle-btn text-left btn-block d-sm-none" aria-expanded="false" aria-controls="support-links">Customer Care</button>
	<h5 class="footer-section-heading title d-none d-sm-block">Customer Care</h5>
</div>
<ul id="support-links" class="content">
	<li><a class="no-decoration" href="https://www.livingproof.com/faq.html" role="link">Customer Care / FAQ</a>
	</li>
	<!--<li><a class="no-decoration" href="https://www.livingproof.com/contact-us" role="link">Contact Us</a>
	</li>-->
	<li><a class="no-decoration" href="https://www.livingproof.com/shipping-returns.html" role="link">Shipping + Returns</a>
	</li>
	<!--<li><a class="no-decoration" href="#" role="link">Product Ingredients</a>
	</li>-->
	<li><a class="no-decoration" href="https://www.livingproof.com/account" role="link" title="Go to My Account">My Account</a>
	</li>
	<li><a class="no-decoration" href="https://track.livingproof.com/" role="link" title="Go to My Order Status Opens in New Window" target="_blank">Order Status</a>
	</li>
</ul>
    </div> <!-- End content-asset -->



            </div>
            <div class="footer-item  col-md-2 collapsible-xs">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="28d1001e1e9943502c545e9443" -->
        <div>
	<button class="title unstyle-btn text-left btn-block d-sm-none" aria-expanded="false" aria-controls="legal-links">Legal</button>
	<h5 class="footer-section-heading title d-none d-sm-block">Legal</h5>
</div>
<ul id="legal-links" class="content">
	<!--<li><a class="no-decoration" href="#" role="link">Cookies</a>
	</li>-->
	<li><a class="no-decoration" href="https://www.livingproof.com/privacy-notice.html" role="link">Privacy</a>
	</li>
	<li><a class="no-decoration" href="https://dsrp.pii.ai/p/f9827661-75a8-4c46-836b-524d83a2d0cb/submit.html" role="link" target="_blank">Data Subject Request Form</a>
	</li>
	<li><a class="no-decoration" href="https://www.livingproof.com/health-privacy-notice.html" role="link">Consumer Health Data Privacy Policy</a>
	</li>
	<li><a class="no-decoration" href="https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US/SiteMap-Google" role="link">Sitemap</a>
	</li>
	<li><a class="no-decoration" href="https://www.livingproof.com/terms.html" role="link">Terms of Use</a>
	</li>
	<li><a class="no-decoration" href="https://www.livingproof.com/accessibility.html" role="link">Accessibility</a>
	</li>
</ul>
    </div> <!-- End content-asset -->



            </div>
            <div class="footer-item col-md-2">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="3b502b0c7bcb00c069d01f82ae" -->
        <h5 class="footer-section-heading mt-3 mt-md-0">Join us</h5>
<div class="d-flex flex-row flex-md-column justify-content-between">
    <div id="social-links" class="social-links d-flex align-items-center align-self-start">
        <a class="social-link social-link--tiktok" href="https://www.tiktok.com/@livingproofinc" role="link" target="_blank"><img alt="follow us on tiktok" src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwdd33b197/tiktok.png" title="" height="22px" /></a>
        <a href="https://www.youtube.com/user/livingproof" class="social-link social-link--youtube" role="link" target="_blank" aria-label="Link to YouTube opens in new window"><i class="fa fa-youtube-play"></i></a>
        <a href="https://www.facebook.com/livingproofinc/" class="social-link social-link--facebook round background-color-grey5 text-color-white" role="link" target="_blank" aria-label="Link to Facebook opens in new window"><i class="fa fa-facebook"></i></a>
        <a href="https://www.instagram.com/livingproofinc" class="social-link social-link--instagram" role="link" target="_blank" aria-label="Link to Instagram opens in new window"><i class="fa fa-instagram"></i></a>
    </div>
    <div class="logos align-self-start mt-0 mt-md-4">
        <img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dwf6e0a434/images/peta_logo_220_140.png" alt="Peta Cruelty-Free" />
    </div>
</div>
    </div> <!-- End content-asset -->



            </div>
            <div class="footer-utils">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="ce57bf651e0da06a7f6f8ffae2" -->
        <style>
	.accessabiliy-img {
	        display: block;
	        width: 80px;
	    }
	    @media only screen and (min-width: 768px) {
	        .footer-utils-menu{
	            width:800px; float: right;
	        }
	
	        .footer-utils-menu li a{
	            letter-spacing: 0px !important;
	        }
	    }
	
	    @media only screen and (max-width: 767px) {
	        .footer-utils-menu{
	        display: block !important;
	        }
	
	        .footer-social{
	            display: block !important;
	        }
	 }
</style>
<script type="text/javascript">
	(function() {
	    var ev = document.createElement('script');
	    ev.type = 'text/javascript';
	    ev.async = true;
	    ev.setAttribute('data-ev-tag-pid', 21217);
	    ev.setAttribute('data-ev-tag-ocid', 2523);
	    ev.src = '//c.evidon.com/pub/tag.js';
	    var s = document.getElementsByTagName('script')[0];
	    s.parentNode.insertBefore(ev, s);
	})();
</script>
 <ul class="footer-utils-menu" style=" display: inline-flex; flex-wrap: wrap;"> 
<!-- <ul class="footer-utils-menu"> -->
<!-- <li><a id="_bapw-link" href="#" target="_blank" style="text-decoration:none !important" title="AdChoices-Do Not Sell"><img id="_bapw-icon" alt="Ad Choices - Do Not Sell or Share" style="width:15px; border:0 !important;display:inline !important;vertical-align:middle !important;padding-right:5px !important;" />
            <span>Ad Choices - Do Not Sell or Share</span></a>
	</li> 
<li><a href="https://privacy.unileversolutions.com/en/rights-request-form.html" target="_blank">Do Not Sell or Share My Information</a>
	</li> 
-->
<li><!-- OneTrust Cookies Settings button start -->
<!--<button id="ot-sdk-btn" class="ot-sdk-show-settings" style="border: none; margin: 0em 1em 1em 0em; color: var(--color-grey-aa);">Cookie Settings</button>-->
<!-- OneTrust Cookies Settings button end -->
<!-- PieEye Script Start -->
<a id="clarip-do-not-sell-link" href="#" onclick="event.preventDefault();">Cookie Settings</a>&nbsp;
<br>
<div class="privacy-link">
     <span onClick="showPopup()">Do Not Sell or Share</span>
</div>
<!-- PieEye Script End -->


	</li>
<!--
	<li><a class="accessabiliy-img" href="https://www.essentialaccessibility.com/living-proof?utm_source=livingproofhomepage&utm_medium=iconlarge&utm_term=eachannelpage&utm_content=header&utm_campaign=livingproof" title="Accessibility"><img src="https://www.livingproof.com/on/demandware.static/-/Library-Sites-livingproof-shared/default/dw9583720b/images/eA_Icon.svg" alt="Accessibility" /></a>
	</li>
-->
</ul>

<style>
	*:focus {
	    outline: none;
</style>
    </div> <!-- End content-asset -->



            </div>
        </div>
        <hr class="hidden-xs-down" />
        <div class="row">
            <div class="col-12 container copyright-notice">
                
    
    <div class="content-asset"><!-- dwMarker="content" dwContentID="a3fc427654695fe68133791973" -->
        <p class="copyright">&copy; 2025 Living Proof. All Rights Reserved.</p>
    </div> <!-- End content-asset -->



                
                
    <span class="menu-item dropdown country-selector" data-url="/on/demandware.store/Sites-livingproof-sfra-Site/en_US/Page-SetLocale">
        <button class="unstyle-btn btn dropdown-toggle" id="dropdownCountrySelector" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
            <i class="flag-icon flag-icon-us"></i>
            English (United States)
        </button>
        <div class="dropdown-menu dropdown-country-selector" aria-labelledby="dropdownCountrySelector">
            
                <span class="dropdown-item country-dropdown-item" data-url="{
&quot;GB&quot;: {
		&quot;url&quot;: &quot;https://www.livingproof.co.uk&quot;
		},
&quot;US&quot;: {
		&quot;url&quot;: &quot;https://www.livingproof.com&quot;
		}
}" data-countrycode="GB">
                    <i class="flag-icon flag-icon-gb"></i>
                    English (United Kingdom)
                </span>
            
        </div>
        <i class="fa fa-angle-up font-size-8"></i>
    </span>


            </div>
        </div>
    </div>
</footer>




    




<span class="feature-toggles d-none">
    
        <span class="enableFloatLabels" data-enabled="true"></span>
    
</span>











    <script async src="//static.klaviyo.com/onsite/js/klaviyo.js?company_id=H99sYH"></script>
    <script>
        // klaviyo object loader - provided by klaviyo
        !function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();
    </script>
    
    
    
   







<script>
    var klaviyoJS = {};
    klaviyoJS.sfccEmailRegex = new RegExp(/^[\w.%+-]+@[\w.-]+\.[\w]{2,6}$/);
    klaviyoJS.e164PhoneRegex = new RegExp(/^\+[1-9]\d{1,14}$/);


    let selectedInput = document.querySelectorAll('#email-guest');
    if (selectedInput) {
        Array.from(selectedInput).forEach(klavInput => {
            klavInput.addEventListener("change", function() {
                if( klaviyoJS.sfccEmailRegex.test (klavInput.value) ) {
                    $.ajax({
                        url: "https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US/Klaviyo-StartedCheckoutEvent",
                        type: 'post',
                        data: { a: btoa(klavInput.value) },
                        error: function (err) {
                            console.warn('Klaviyo StartedCheckoutEvent failure: ' + err.statusText);
                        }
                    });
                }
            });
        });
    }

</script>


    <script>
        var KLselectors = ["#email-guest","#guest"];
        klaviyoJS.emailFieldSelectors = Array.isArray(KLselectors) ? KLselectors : Object.values(KLselectors);
        
            klaviyoJS.emailFieldSelectors.push('#email-guest');
        
        klaviyoJS.getExchangeID = function () {
            var klaviyoCookie = document.cookie.split('; ').filter(function(c) {return /__kla_id=/.test(c)});
            return JSON.parse(atob(klaviyoCookie[0].split("__kla_id=")[1])).$exchange_id;
        };
        klaviyoJS.identifyPhone = function(inputVal) {
            let formattedPhone = '+' + inputVal.replace(/[^a-z0-9]/gi, '');
            if (klaviyoJS.e164PhoneRegex.test(formattedPhone)){
                klaviyo.identify({ '$phone_number' : formattedPhone }).then(() => { klaviyoJS.identifiedUser = true; klaviyoJS.exchangeID = klaviyoJS.getExchangeID(); klaviyoJS.phone = formattedPhone; });
            }
        };
        klaviyoJS.phoneOrEmail = function(inputVal) {
            if (klaviyoJS.sfccEmailRegex.test (inputVal.target.value)) {
                klaviyo.identify({ '$email' : inputVal.target.value }).then(() => { klaviyoJS.identifiedUser = true; klaviyoJS.exchangeID = klaviyoJS.getExchangeID(); });
            }
            if (Number(inputVal.target.value.replace(/[^a-z0-9]/gi, ''))) {
                klaviyoJS.identifyPhone(inputVal.target.value);
            }
        };
        Promise.resolve(klaviyo.isIdentified()).then((result) => { klaviyoJS.identifiedUser = result });

        window.addEventListener('DOMContentLoaded', (event) => {
            if ("MutationObserver" in window) {
                let page = document.body;
                const observer = new MutationObserver(mutations => {
                    klaviyoListeners();
                });

                observer.observe(page, {
                    childList: true,
                    subtree: true
                });
            }
        });

        function klaviyoListeners() {
            for (let i = 0; i < klaviyoJS.emailFieldSelectors.length; i++) {
                let selectedInput = document.querySelectorAll(klaviyoJS.emailFieldSelectors[i]);
                if (selectedInput) {
                    Array.from(selectedInput).forEach(klavInput => {
                        if (klavInput && !klavInput.hasAttribute('data-listener')) {
                            klavInput.setAttribute('data-listener', 'klaviyo');
                            klavInput.addEventListener("change", (klavInput) => klaviyoChangeEvent(klavInput));
                        }
                    })
                }
            }
        }

        function klaviyoChangeEvent(input){
            if (!klaviyoJS.identifiedUser) {
                klaviyoJS.phoneOrEmail(input);
            }
            if (input.target.pattern.length && input.target.value.match(input.target.pattern)) {
                if (klaviyoJS.identifiedUser && klaviyoJS.exchangeID && klaviyoJS.phone) {
                    klaviyo.identify({ '$email' : input.target.value, '$phone_number' : klaviyoJS.phone }).then(() => { klaviyoJS.identifiedUser = true; klaviyoJS.exchangeID = klaviyoJS.getExchangeID(); });
                }
            } else {
                if (klaviyoJS.identifiedUser && klaviyoJS.exchangeID && klaviyoJS.phone && klaviyoJS.sfccEmailRegex.test (input.target.value)) {
                    klaviyo.identify({ '$email' : input.target.value, '$phone_number' : klaviyoJS.phone }).then(() => { klaviyoJS.identifiedUser = true; klaviyoJS.exchangeID = klaviyoJS.getExchangeID(); });
                }
            }
        }

        klaviyoListeners();
    </script>



    <script>
        klaviyoJS.subscribe = function(data) {
            $.ajax({
                url: "https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US/Klaviyo-Subscribe",
                type: 'post',
                data: data,
                error: function (err) {
                    console.warn('Klaviyo Subscribe failure: ' + err.statusText);
                }
            });
        }

        window.addEventListener('DOMContentLoaded', (event) => {
            klaviyoJS.emailSubscribe = document.getElementById('KLEmailSubscribe');
            if (klaviyoJS.emailSubscribe) {
                if (klaviyoJS.emailSubscribe.checked) {
                    klaviyoJS.subscribe({ e: true });
                }
                klaviyoJS.emailSubscribe.addEventListener('click', function(){
                    klaviyoJS.subscribe({ e: klaviyoJS.emailSubscribe.checked });
                });
            }

            klaviyoJS.smsSubscribe = document.getElementById('KLSmsSubscribe');
            if (klaviyoJS.smsSubscribe) {
                if (klaviyoJS.smsSubscribe.checked) {
                    klaviyoJS.subscribe({ s: true });
                }
                klaviyoJS.smsSubscribe.addEventListener('click', function(){
                    klaviyoJS.subscribe({ s: klaviyoJS.smsSubscribe.checked });
                });
            }
        });
    </script>





    




</div>
<div class="error-messaging"></div>
<div class="modal-background"></div>






<!-- Demandware Analytics code 1.0 (body_end-analytics-tracking-asynch.js) -->
<script type="text/javascript">//<!--
/* <![CDATA[ */
function trackPage() {
    try{
        var trackingUrl = "https://www.livingproof.com/on/demandware.store/Sites-livingproof-sfra-Site/en_US/__Analytics-Start";
        var dwAnalytics = dw.__dwAnalytics.getTracker(trackingUrl);
        if (typeof dw.ac == "undefined") {
            dwAnalytics.trackPageView();
        } else {
            dw.ac.setDWAnalytics(dwAnalytics);
        }
    }catch(err) {};
}
/* ]]> */
// -->
</script>
<script type="text/javascript" src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/internal/jscript/dwanalytics-22.2.js" async="async" onload="trackPage()"></script>
<!-- Demandware Active Data (body_end-active_data.js) -->
<script src="/on/demandware.static/Sites-livingproof-sfra-Site/-/en_US/v1750080108957/internal/jscript/dwac-21.7.js" type="text/javascript" async="async"></script><!-- CQuotient Activity Tracking (body_end-cquotient.js) -->
<script src="https://cdn.cquotient.com/js/v2/gretel.min.js" type="text/javascript" async="async"></script>
</body>
</html>

