/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 55:0 Unexpected "<"

**/

<style>
.hero-image {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda la altura visible */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* rellena toda la pantalla sin deformarse */
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.03); /* efecto suave al pasar el mouse */
}

.hero-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* oscurece un poco la imagen */
  z-index: 5;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  z-index: 20;
  pointer-events: none; /* permite que el clic funcione en toda la imagen */
  text-transform: uppercase;
}
</style>

<div class="hero-image">
  <!-- enlace al que lleva el clic -->
  <a href="/collections/all" class="hero-link"></a>

  <!-- overlay para contraste -->
  <div class="hero-overlay"></div>

  <!-- tu imagen -->
  <img src="//www.unfldclothing.com/cdn/shop/t/5/assets/drop.png?348" alt="UND BLUE">

  <!-- texto o logo centrado -->
  <div class="hero-text">ENTER STORE</div>
</div>
