/** Shopify CDN: Minification failed

Line 129:10 Unexpected ";"

**/
/* LOGO TITLE */ /* Improved Aurora Text Effect */
.title {
  font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 300; /* Bold text */
  background: linear-gradient(
    90deg,
    #00c2ff,
    #33ff8c,
    #ffc640,
    #e54cff,
    #00c2ff,
    #33ff8c,
    #ffc640,
    #e54cff
  );
  background-size: 800% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora-flow 20s linear infinite;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  display: inline-block;
}
@keyframes aurora-flow {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 50% 30%;
  }
  50% {
    background-position: 100% 50%;
    filter: hue-rotate(20deg);
  }
  75% {
    background-position: 50% 70%;
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
} /* Add subtle pulsing effect */
@keyframes aurora-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}
.title:hover {
  animation: aurora-flow 30s linear infinite,
    aurora-pulse 8s ease-in-out infinite;
}
header {
  margin-bottom: 1rem;
  margin-top: 1rem; /* Increase value as needed */
}
.custom-logo-wrapper {
  display: flex;
  flex-direction: row; /* Force side-by-side */
  align-items: left; /* Vertically align */
  gap: 0.5rem; /* Space between logo and title */
  margin-top: 6px;
} /* LOGO ICON */
@media screen and (max-width: 768px) {
  .custom-header-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
  }
  .custom-header-branding .header-logo {
    flex-shrink: 0;
  }
  .custom-header-branding .header-logo img {
    height: 60px; /* adjust to make it larger */
    width: auto;
  }
}

@media (max-width: 749px) {
  p.hide-on-mobile {
    display: none !important;
  }
}
.menu-list__link-title {
  color: black !important;
}

/* SUBTITLE */
@media (max-width: 749px) {
  p.hide-on-mobile {
    display: none !important;
  }
}

/* LOGO */
  .custom-logo-wrapper {
    white-space: nowrap;
    vertical-align: middle;
    max-width: 100v%;
    overflow: visible !important;
  }
  .custom-logo-wrapper > span {
    display: inline-block;
    vertical-align: middle;
  }
  .custom-logo-wrapper > span:first-child {
    flex-shrink: 0;
  }
  .custom-logo-wrapper img.header-logo__image {
    width: 80px; /* Fixed width for desktop - adjust as needed */
    height: auto;
    vertical-align: middle;
    display: inline-block;
  }
  .custom-logo-wrapper > span:last-child {
    margin-left: 0.5rem;
    white-space: normal !important;
  } inline;
  }
  @media (max-width: 480px) {
    .custom-logo-wrapper {
      white-space: normal;
    }
    .custom-logo-wrapper > span {
      display: inline-block;
      vertical-align: middle;
    }
    .custom-logo-wrapper img.header-logo__image {
      width: 80px; /* Larger mobile logo */
    }
    .title {
      font-size: 1.4rem;
    }
  }

