/* ==================== MERCH SECTION ==================== */

.merch-section {
  padding: 100px 0;
  background: #000; /* Negro puro */
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Patrón de fondo opcional para hacerlo más interesante */
.merch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.03) 2px,
      rgba(255,255,255,0.03) 4px
    );
  pointer-events: none;
}

.coming-soon {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coming-soon h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
  border: 3px solid #fff;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 0; /* Sin bordes redondeados */
}

.coming-soon h3 {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: none;
  line-height: 1.1;
  /* Efecto de texto con borde */
  -webkit-text-stroke: 2px #fff;
}

.coming-soon p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

.coming-soon::before {
  top: -30px;
}

.coming-soon::after {
  bottom: -30px;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .merch-section { padding: 80px 20px; }
  .coming-soon h2 { 
    font-size: 1.2rem; 
    letter-spacing: 4px;
    padding: 10px 25px;
  }
  .coming-soon h3 { 
    font-size: 3.5rem;
    letter-spacing: 6px;
    -webkit-text-stroke: 1.5px #fff;
  }
  .coming-soon p { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .merch-section { padding: 60px 20px; }
  .coming-soon h2 { 
    font-size: 1rem; 
    letter-spacing: 3px;
    padding: 8px 20px;
  }
  .coming-soon h3 { 
    font-size: 2.5rem;
    letter-spacing: 4px;
    -webkit-text-stroke: 1px #fff;
  }
  .coming-soon p { font-size: 1rem; }
  
  .coming-soon::before,
  .coming-soon::after {
    width: 60px;
  }
}