/* Estilos para la página inicial */
.store-front {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  z-index: 100;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Compatibilidad para altura total del viewport en móviles */
@supports (height: 100dvh) {
  .store-front {
    height: 100dvh;
  }
}

.store-title {
  color: white;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  animation: fadeIn 1s ease;
}

/* Estilos para el nuevo layout */
.logo-container {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.store-logo {
  max-width: 800px;
  height: auto;
  pointer-events: none;
  /* evita clics, activarlo si se necesita con auto */
}

.datos-home {
  position: absolute;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: black;
  pointer-events: auto;
  margin: 0;
  align-items: center;
  width: 100%;
}

.titulo-product-home {
  font-size: 36.65px;
  margin: 0;
  font-family: 'ABCSyntMono', monospace;
  font-weight: 400;
  letter-spacing: 0.65em;
  color: rgba(0, 0, 0, 0.25);
}

.precio-product-home {
  font-size: 14px;
  margin: 0;
}

.contenido-product-home {
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.4em;
}

.desc-product-home {
  margin: 0;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .store-logo {
    max-width: 100%;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    opacity: 0.5;
    flex-direction: column;
    align-items: center;
    width: 100%;
    top: 5%;
    position: absolute;
  }

  .titulo-product-home {
    font-size: 22.85px;
    letter-spacing: 0.37em;
  }

  .datos-home {
    bottom: 3%;
    width: 100%;
  }

  .store-front {
    height: 100vh; /* fallback */

    /* Vista completa con compatibilidad moderna */
    height: 100dvh;
  }

  @supports (height: 100dvh) {
    .store-front {
      height: 100dvh;
    }
  }
}
