/** Shopify CDN: Minification failed

Line 45:0 Unexpected "<"
Line 101:0 Unexpected "<"
Line 116:4 Unexpected "<"
Line 164:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.nunito{
  font-family: nunito;
}
#wax-header {
  scroll-margin-top: 100px; /* match your header height */
  scroll-behavior: smooth;
}
  
  
  
  
  .heading-yea {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 45px;
  text-transform:unset;
  margin-bottom: 15px;
}
  
  @media (max-width: 768px) {
  .heading-yea {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .heading-yea {
    font-size: 22px;
  }}

  .heading-yea{
    line-height: 22px;
  }
<style>
  .custom-multicolumn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .custom-multicolumn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Ensures last row is centered */
    gap: 20px; /* Space between boxes */
    width: 100%;
    max-width: 1200px; /* Prevents excessive width */
  }

  .custom-multicolumn .column {
    flex: 1 1 calc(100% / var(--columns-desktop) - 20px);
    max-width: calc(100% / var(--columns-desktop) - 20px);
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .custom-multicolumn .column:hover {
    background: #ececec;
  }

  .custom-multicolumn .column svg {
    width: 40px;
    height: 40px;
    fill: #333; /* Default color */
    margin-bottom: 10px;
  }

  .custom-multicolumn .column h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .custom-multicolumn .column p {
    font-size: 1rem;
    color: #666;
  }

  /* Responsive Columns */
  @media (max-width: 768px) {
    .custom-multicolumn .column {
      flex: 1 1 calc(100% / var(--columns-mobile) - 20px);
      max-width: calc(100% / var(--columns-mobile) - 20px);
    }
  }
</style>
<style>
    .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
    </style>
<style>
.weight-options {
    display: flex;
    justify-content: center;
    gap: 10px; /* Reduce space between boxes */
    flex-wrap: nowrap; /* Prevent wrapping into a second row */
    overflow-x: auto; /* Allow scrolling if needed */
    white-space: nowrap; /* Prevent elements from stacking */
    padding: 0px 0;
}

.option {
    background: #fff;
    padding: 5px 5px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1.5px solid transparent;
    min-width: 90px; /* Force a small, equal width */
    max-width: 100px;
    flex-shrink: 0; /* Prevent shrinking */
}

.option:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
    border-color: #e272a3; /* Subtle brand color outline */
}

h4 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.discount {
    font-size: 12px;
    font-weight: bold;
    color: #e272a3;
    background: rgba(226, 114, 163, 0.15);
    padding: 3px 7px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
}

  </style>
.video-fullscreen-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 1rem;
}

.video-fullscreen-wrapper iframe {
  border: none;
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop */
@media screen and (min-width: 768px) {
  .video-fullscreen-wrapper iframe {
    width: var(--video-width-desktop);
    height: var(--video-height-desktop);
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .video-fullscreen-wrapper iframe {
    width: var(--video-width-mobile);
    height: var(--video-height-mobile);
  }
}