/** Shopify CDN: Minification failed

Line 176:0 Expected "}" to go with "{"

**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

.coming-soon-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #ff5722 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  animation: float 6s ease-in-out infinite;
}

.icon-tl-1 {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.icon-tl-2 {
  top: 15%;
  left: 20%;
  animation-delay: 1s;
}

.icon-tr-1 {
  top: 12%;
  right: 10%;
  animation-delay: 0.5s;
}

.icon-tr-2 {
  top: 20%;
  right: 22%;
  animation-delay: 1.5s;
}

.icon-bl-1 {
  bottom: 15%;
  left: 12%;
  animation-delay: 2s;
}

.icon-bl-2 {
  bottom: 10%;
  left: 25%;
  animation-delay: 2.5s;
}

.icon-br-1 {
  bottom: 18%;
  right: 8%;
  animation-delay: 1s;
}

.icon-br-2 {
  bottom: 12%;
  right: 20%;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.container {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.logo-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.logo {
  width: 500px;
  height: auto;
  max-width: 90vw;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.title {
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  /* Added display flex for word animation */
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Added animated words with pulse and glow effects */
.title .word {
  display: inline-block;
  animation: titlePulse 2s ease-in-out infinite;
}

.title .word:nth-child(1) {
  animation-delay: 0s;
}

.title .word:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes titlePulse {
  0%, 100% {
    transform: scale(1) translateY(0);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.08) translateY(-5px);
    text-shadow:
      0 4px 20px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(255, 255, 255, 0.5),
      0 0 60px rgba(255, 140, 66, 0.4);
  }
}

.tagline {
  font-size: 2rem;
  font-weight: 600;
  color: #fff5e6;
  margin-bottom: 2
