/* ==========================================================================
   ======================= SECTION: HERO TIENDA =============================
   ========================================================================== */

.bohoo-tienda-hero {
    height: 45vh; /* Ocupa un poco menos de la mitad de la pantalla */
    min-height: 300px;
    max-height: 450px;
    overflow: hidden;
}

/* El truco del degradado: Transparente arriba, negro semitransparente abajo */
.bohoo-tienda-hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none; /* Evita que esta capa bloquee clics accidentales */
    z-index: 0;
}

.bohoo-tienda-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Peso normal, elegante */
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2); /* Una sombrita extra de refuerzo */
}

/* ==========================================================
   ================ RESPONSIVE ==============================
   ========================================================== */
@media (max-width: 768px) {
    .bohoo-tienda-hero {
        height: 30vh;
        min-height: 220px;
    }
    
    .bohoo-tienda-title {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }
}