/** Shopify CDN: Minification failed

Line 101:14 Expected ":"

**/
/* Coming Soon Page Styles */

.coming-soon-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Default background when no custom image is set */
.coming-soon-hero:not([style*="background-image"]) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coming-soon-hero:not([style*="background-image"])::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="shirt-pattern" x="0" y="0" width="400" height="300" patternUnits="userSpaceOnUse"><rect width="400" height="300" fill="%23f8f9fa"/><circle cx="50" cy="50" r="30" fill="%23e9ecef" opacity="0.3"/><circle cx="350" cy="250" r="40" fill="%23dee2e6" opacity="0.2"/><path d="M100 150 Q200 100 300 150" stroke="%23ced4da" stroke-width="2" fill="none" opacity="0.3"/></pattern></defs><rect width="1200" height="800" fill="url(%23shirt-pattern)"/></svg>');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: blur(1px);
  z-index: 1;
}

/* Custom background image overlay */
.coming-soon-hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

.coming-soon-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #2c3e50;
  margin: 0 0 2rem 0;
  line-height: 1.3;
}

.coming-soon-heading .line-2 {
  font-size: 3.8rem;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

.coming-soon-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  color: #34495e;
  line-height: 1.6;
  margin: 0 0 3rem 0;
  font-weight: 400;
}

.coming-soon-form {
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: stretch;
  position: relative;
}

.coming-soon-email {
  flex: 1;
  padding: 1.4rem 2rem;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size1.6rem;
    font-family: Inter, sans-serif;
    background: #fff;
    transition: border-color .3s ease;
    width: 100%;
}

.coming-soon-email:focus {
  outline: none;
  border-color: #6c757d;
}

.coming-soon-email::placeholder {
  color: #adb5bd;
}

.coming-soon-button {
  padding: 1.4rem 2.4rem;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  position: absolute;
  right: 3px;
  top: 3.5px;
}

.coming-soon-button:hover {
  background: #34495e;
  transform: translateY(-1px);
}

.coming-soon-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: #6c757d;
  margin: 0;
  font-weight: 400;
}

.coming-soon-loading {
  width: 400px;
  max-width: 90%;
  height: 60px;
  background: #2c3e50;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}
.line-1 {
    display: flex;
    justify-content: center;
}
.coming-soon-loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #e9ecef;
  border-radius: 30px;
  transition: width 2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
}

.coming-soon-loading-text {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.coming-soon-progress-text {
  color: #2c3e50;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.coming-soon-success {
  display: none;
  color: #28a745;
  font-size: 1.4rem;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .coming-soon-card {
    padding: 3rem 2rem;
    margin: 0 1rem 2rem 1rem;
  }

  .coming-soon-heading {
    font-size: 2.4rem;
  }

  .coming-soon-heading .line-2 {
    font-size: 2.8rem;
  }

  .coming-soon-description {
    font-size: 1.4rem;
  }

  .coming-soon-form {
    flex-direction: column;
  }

  .coming-soon-email,
  .coming-soon-button {
    padding: 1.2rem 1.8rem;
    font-size: 1.4rem;
  }

  .coming-soon-loading {
    width: 300px;
    height: 50px;
  }

  .coming-soon-loading-text,
  .coming-soon-progress-text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .coming-soon-card {
    padding: 2rem 1.5rem;
  }

  .coming-soon-heading {
    font-size: 2rem;
  }

  .coming-soon-heading .line-2 {
    font-size: 2.4rem;
  }

  .coming-soon-description {
    font-size: 1.3rem;
  }

  .coming-soon-loading {
    width: 280px;
    height: 45px;
  }
}
