/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 163:0 Unexpected "<"
Line 167:10 Expected ":"
Line 170:9 Unexpected "hhSelectOption("
Line 171:14 Expected ":"
Line 173:5 Expected ":"
Line 174:9 Expected ":"
Line 178:7 Expected ":"
Line 181:9 Expected identifier but found "addEventListener("
Line 191:1 Expected identifier but found "%"
... and 4 more hidden warnings

**/
<div id="hh-popup" class="hh-popup">
  <div class="hh-popup-box">
    <button class="hh-close" onclick="hhClosePopup()">×</button>

    <div class="hh-popup-left">
      <h1>HAUTE<br><span>HANDS</span></h1>

      <h2>WANT <span>15% OFF?</span></h2>
      <p>Tell us what you love!</p>

      <button onclick="hhSelectOption('lashes')">💗 LASHES</button>
      <button onclick="hhSelectOption('nails')">💅 NAILS</button>
      <button onclick="hhSelectOption('both')">✨ BOTH</button>

      <a id="hh-offer-link" href="/account/register">GET 15% OFF</a>
    </div>

    <div class="hh-popup-right"></div>
  </div>
</div>

<style>
.hh-popup {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.55) !important;
  z-index: 999999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px;
}

.hh-popup-box {
  width: 100%;
  max-width: 920px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border: 2px solid #C05A87;
}

.hh-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 36px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 3;
}

.hh-popup-left {
  padding: 45px 38px;
  text-align: center;
}

.hh-popup-left h1 {
  font-size: 54px;
  line-height: 0.9;
  color: #C05A87;
  letter-spacing: 4px;
  margin-bottom: 35px;
  font-family: serif;
}

.hh-popup-left h1 span {
  font-size: 26px;
  letter-spacing: 12px;
}

.hh-popup-left h2 {
  font-size: 38px;
  color: #000000;
  font-weight: 900;
  margin-bottom: 20px;
}

.hh-popup-left h2 span {
  color: #C05A87;
}

.hh-popup-left p {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}

.hh-popup-left button {
  width: 100%;
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 40px;
  background: #ffffff;
  border: 1.5px solid #C05A87;
  color: #000000;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.hh-popup-left button:hover {
  background: #fff4f8;
}

.hh-popup-left a {
  display: block;
  margin-top: 18px;
  padding: 20px;
  background: #C05A87;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
}

.hh-popup-right {
  background-image: url('/cdn/shop/files/ChatGPT_Image_May_1_2026_02_49_51_AM.png?v=1777625418');
  background-size: cover;
  background-position: center;
  min-height: 620px;
}

@media(max-width:768px){
  .hh-popup-box {
    grid-template-columns: 1fr;
  }

  .hh-popup-right {
    display: none;
  }

  .hh-close {
    color: #000000;
  }

  .hh-popup-left h1 {
    font-size: 42px;
  }
}
</style>

<script>
function hhClosePopup() {
  document.getElementById('hh-popup').style.display = 'none';
}

function hhSelectOption(choice) {
  localStorage.setItem('hhBeautyChoice', choice);

  var buttons = document.querySelectorAll('.hh-popup-left button');
  buttons.forEach(function(btn) {
    btn.style.background = '#ffffff';
  });

  event.target.style.background = '#fff4f8';
}

document.addEventListener("DOMContentLoaded", function() {
  setTimeout(function(){
    var popup = document.getElementById("hh-popup");
    if (popup) {
      popup.style.display = "flex";
    }
  }, 2000);
});
</script>

{% schema %}
{
  "name": "Haute VIP Popup",
  "settings": [],
  "presets": [
    {
      "name": "Haute VIP Popup"
    }
  ]
}
{% endschema %}
/* Proper footer payment icon restore */
.list-payment__item svg {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
}

.list-payment__item svg,
.list-payment__item img {
  opacity: 1 !important;
}
/* Payment icons only */
.list-payment__item svg {
  background: transparent !important;
}

/* Payment icons restore */
.list-payment__item svg,
.list-payment__item img {
  opacity: 1 !important;
}