/** Shopify CDN: Minification failed

Line 56:0 Unexpected "<"
Line 66:0 Unexpected "<"
Line 69:2 Comments in CSS use "/* ... */" instead of "//"
Line 75:4 Comments in CSS use "/* ... */" instead of "//"
Line 81:2 Comments in CSS use "/* ... */" instead of "//"
Line 203:0 Unexpected "<"

**/
.splash {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        opacity: 1;
        z-index: 99999;
        display: block;
    }

    .splash.fade-out {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease-in-out;
    }

/* CUSTOM CODE VIA PixG.design Agency */
.kalviyo-alignment {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kalviyo-alignment, #shopify-section-template--17525017116725__d8ee133c-6c26-486e-be78-334ca6d8fbe9 > div > div > div > div {


  border: 2px solid #FFD700;          /* Gold border */
  border-radius: 6px;                 /* Slightly rounded corners */
  padding: 20px;                      /* Optional internal spacing */
  box-sizing: border-box;             /* Keep layout consistent */
  box-shadow: 0 0 10px #FFD700;       /* Subtle golden glow */


}

@media (min-width:450px) {
  #shopify-section-template--17525017116725__d8ee133c-6c26-486e-be78-334ca6d8fbe9 > div > div > div > div {
  padding: 60px !important;
}
}

/* Kalviyo above */

<style>
  body {
    opacity: 0;
    transition: opacity 0.4s ease;
    display:none !important;
  }

  body.visible {
    opacity: 1;
  }
</style>

<script>
  // Hide body instantly when the page starts loading
  document.documentElement.style.visibility = 'hidden';
  document.addEventListener('DOMContentLoaded', () => {
    document.documentElement.style.visibility = 'visible';
    document.body.style.opacity = '0';

    // Wait 0.5s before showing body
    setTimeout(() => {
      document.body.classList.add('visible');
    }, 500);
  });

  // Optional: add fade-out effect when navigating away
  window.addEventListener('beforeunload', () => {
    document.body.style.opacity = '0';
  });
</script>



/* TO remove the unecessary gap above it */
/* #StickyHeaderWrap {
  height:0px !important;
} */

/* Custom hero Section */
.hero-banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-container {
  display: flex;
  flex-direction: row;
  width: 100vw;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.slideCustom {
  position: relative;
  min-width: 100vw;
  /* height:80vh; */
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}


.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide-bg img,
.slide-bg source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.slide-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: left;
  max-width: 800px;
  padding: 20px;
}
.slide-content h1 {
  font-size: 3rem; 
  margin-bottom: 10px;
}
.slide-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.slide-content p {
  margin-bottom: 20px;
  font-size: 1rem;
}
.btnCustom {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.btn-primary {
  background-color: #000;
  color: #fff;
}
.btn-secondary {
  background-color: #666;
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content h3 {
    font-size: 1.2rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }

  .slideCustom {
    aspect-ratio:1 / 1 !important;
    height: auto !important;

  }
}

@media (min-width:769px) {
    .slideCustom {
      min-height:80vh;
      padding:250px;
    }
}
</style>
