/** Shopify CDN: Minification failed

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

**/
/* Contenedor principal */
.password-landing-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* Logo */
.password-logo-centered {
  max-width: 300px;
  margin: 0 auto 30px;
}
.password-logo-centered img {
  width: 100%;
  height: auto;
}

/* Botón early access */
.password-early-access {
  margin-bottom: 20px;
}
.password-early-access button {
  background: white;
  border: 1px solid black;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Descripción */
.password-description {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0;
}

/* Formulario */
.password-form {
  display: flex;
  margin: 0 auto;
  max-width: 100%;
}
.password-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid black;
  font-size: 14px;
}
.password-form button {
  background: black;
  color: white;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* Instagram */
.password-instagram {
  margin-top: 40px;
  font-weight: bold;
}
.shopify-section {
  display: none;
}
.password-instagram a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.password-instagram a:hover {
  color: #666;
}
.wave-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin-top: 50px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.25));
}

.waves {
  position: absolute;
  bottom: 0;
  width: 300%;
  height: 100%;
  opacity: 0.8;
  will-change: transform;
}

.wave1 {
  animation: waveMove 40s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  fill-opacity: 0.85;
}

.wave2 {
  animation: waveMove 60s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
  opacity: 0.6;
}

.wave3 {
  animation: waveMove 90s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0.4;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}
.password-early-access button {
  color: #000000; /* O el color que querés para el texto */
}

@media (max-width: 749px) {
  .password-early-access button {
    color: #000000 !important; /* Fuerza el color en móvil */
    background-color: #ffffff;
    border: 1px solid black;
  }

